Files
petwash/PetWashControl/App.xaml
2026-02-25 15:43:47 +08:00

18 lines
845 B
XML

<Application x:Class="PetWashControl.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:PetWashControl"
xmlns:converters="clr-namespace:PetWashControl.Converters"
StartupUri="Views/MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Resources/Styles.xaml"/>
</ResourceDictionary.MergedDictionaries>
<converters:BoolToStatusConverter x:Key="BoolToStatusConverter"/>
<converters:BoolToWashingConverter x:Key="BoolToWashingConverter"/>
</ResourceDictionary>
</Application.Resources>
</Application>