App.xaml 724 B

12345678910111213141516171819
  1. <Application x:Class="Xilium.CefGlue.Demo.WPF.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:xi="clr-namespace:Xilium.CefGlue.Demo.WPF"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <!--
  8. <ControlTemplate x:Key="TemplateWpfCefBrowser" TargetType="{x:Type xi:WpfCefBrowser}">
  9. <ContentPresenter />
  10. </ControlTemplate>
  11. <Style TargetType="{x:Type xi:WpfCefBrowser}">
  12. <Setter Property="Template" Value="{DynamicResource TemplateWpfCefBrowser}" />
  13. </Style>
  14. -->
  15. </Application.Resources>
  16. </Application>