Files
Ayay/SHH.CameraDashboard/App.xaml

22 lines
969 B
Plaintext
Raw Normal View History

2026-01-01 22:40:32 +08:00
<Application
x:Class="SHH.CameraDashboard.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:SHH.CameraDashboard"
xmlns:vm="clr-namespace:SHH.CameraDashboard">
2025-12-30 10:53:02 +08:00
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
2026-01-01 22:40:32 +08:00
<ResourceDictionary Source="/Style/Themes/Colors.Dark.xaml" />
<ResourceDictionary Source="/Style/Themes/Icons.xaml" />
<ResourceDictionary Source="/Style/Themes/Sizes.xaml" />
<ResourceDictionary Source="/Style/Themes/Styles.xaml" />
</ResourceDictionary.MergedDictionaries>
2025-12-30 10:53:02 +08:00
2026-01-01 22:40:32 +08:00
<DataTemplate DataType="{x:Type vm:WizardClientsViewModel}">
<local:WizardClientsControl />
</DataTemplate>
2025-12-30 10:53:02 +08:00
</ResourceDictionary>
</Application.Resources>
2026-01-01 22:40:32 +08:00
</Application>