-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.axaml
More file actions
33 lines (24 loc) · 1 KB
/
App.axaml
File metadata and controls
33 lines (24 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="MWSManager.App"
xmlns:local="using:MWSManager"
xmlns:sty="using:FluentAvalonia.Styling"
xmlns:semi="https://irihi.tech/semi"
xmlns:labs="using:Avalonia.Labs.Controls"
xmlns:themes="clr-namespace:ShadUI;assembly=ShadUI"
RequestedThemeVariant="Dark">
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
<Application.DataTemplates>
<local:ViewLocator/>
</Application.DataTemplates>
<Application.Styles>
<Style Selector="TextBox.contentMessage">
<Setter Property="IsHitTestVisible" Value="False"/>
</Style>
<!--sty:FluentAvaloniaTheme PreferUserAccentColor="True"/-->
<labs:ControlThemes/>
<StyleInclude Source="avares://AsyncImageLoader.Avalonia/AdvancedImage.axaml" />
<FluentTheme />
<themes:ShadTheme />
</Application.Styles>
</Application>