12345678910111213141516171819 |
- <Application x:Class="Xilium.CefGlue.Demo.WPF.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:xi="clr-namespace:Xilium.CefGlue.Demo.WPF"
- StartupUri="MainWindow.xaml">
- <Application.Resources>
- <!--
- <ControlTemplate x:Key="TemplateWpfCefBrowser" TargetType="{x:Type xi:WpfCefBrowser}">
- <ContentPresenter />
- </ControlTemplate>
- <Style TargetType="{x:Type xi:WpfCefBrowser}">
- <Setter Property="Template" Value="{DynamicResource TemplateWpfCefBrowser}" />
- </Style>
- -->
- </Application.Resources>
- </Application>
|