DirectoryCreator/App.xaml

12 lines
543 B
Plaintext
Raw Permalink Normal View History

2025-02-12 08:27:02 -03:00
<Application x:Class="DirectoryCreator.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
2025-02-02 17:31:06 -03:00
<Application.Resources>
2025-02-12 08:27:02 -03:00
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Themes/LightTheme.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
2025-02-02 17:31:06 -03:00
</Application.Resources>
</Application>