App.xaml 591 B

123456789101112
  1. <Application x:Class="AwInitilizer.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:AwInitilizer"
  5. xmlns:converterNamespace="clr-namespace:AwInitilizer.Converter"
  6. StartupUri="MainWindow.xaml">
  7. <Application.Resources>
  8. <ResourceDictionary>
  9. <converterNamespace:BooleanAndConverter x:Key="booleanAndConverter" />
  10. </ResourceDictionary>
  11. </Application.Resources>
  12. </Application>