19 lines
841 B
XML
19 lines
841 B
XML
<Application x:Class="BodyshopPartner.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:BodyshopPartner"
|
|
ShutdownMode="OnExplicitShutdown"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
Exit="Application_Exit"
|
|
xmlns:ui="http://schemas.modernwpf.com/2019"
|
|
StartupUri="Views\Login.xaml">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ui:ThemeResources />
|
|
<ui:XamlControlsResources />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application>
|