-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathApp.xaml
More file actions
15 lines (15 loc) · 895 Bytes
/
App.xaml
File metadata and controls
15 lines (15 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Application x:Class="Aiursoft.AiurVersionControl.SampleWPF.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:ClassModifier="internal">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/FluentWPF;component/Styles/Controls.xaml" />
</ResourceDictionary.MergedDictionaries>
<Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource TextBoxRevealStyle}" />
<Style TargetType="{x:Type Button}" BasedOn="{StaticResource ButtonRevealStyle}" />
<Style TargetType="{x:Type ListBox}" BasedOn="{StaticResource ListBoxRevealStyle}" />
</ResourceDictionary>
</Application.Resources>
</Application>