mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 11:11:23 +00:00
12 lines
523 B
XML
12 lines
523 B
XML
<Application x:Class="Examples.WPF.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:Examples.WPF"
|
|
xmlns:conv="clr-namespace:Examples.WPF.Converters"
|
|
StartupUri="MainWindow.xaml">
|
|
<Application.Resources>
|
|
<conv:NegationConverter x:Key="bInv"/>
|
|
<conv:ColorHashConverter x:Key="hashColor"/>
|
|
</Application.Resources>
|
|
</Application>
|