2013-11-12 19:14:11 +08:00
|
|
|
<Application x:Class="CefSharp.MinimalExample.Wpf.App"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2017-04-10 08:15:55 +08:00
|
|
|
xmlns:converter="clr-namespace:CefSharp.MinimalExample.Wpf.Converter"
|
2013-11-12 19:14:11 +08:00
|
|
|
StartupUri="MainWindow.xaml">
|
|
|
|
<Application.Resources>
|
2017-04-10 08:15:55 +08:00
|
|
|
<converter:TitleConverter x:Key="TitleConverter"/>
|
|
|
|
<converter:EnvironmentConverter x:Key="EnvironmentConverter" />
|
2017-12-09 22:11:03 +08:00
|
|
|
<BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
|
2013-11-12 19:14:11 +08:00
|
|
|
</Application.Resources>
|
|
|
|
</Application>
|