forked from bernd5/JavaToCSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.axaml
More file actions
15 lines (15 loc) · 836 Bytes
/
Copy pathApp.axaml
File metadata and controls
15 lines (15 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="JavaToCSharpGui.App"
Name="Java to C#"
RequestedThemeVariant="Default">
<Application.Resources>
<x:Double x:Key="ControlContentThemeFontSize">14</x:Double>
<x:String x:Key="ContentControlThemeFontFamily">Cascadia Code,SF Mono,DejaVu Sans Mono,Menlo,Consolas</x:String>
</Application.Resources>
<Application.Styles>
<FluentTheme /> <!-- FluentTheme will get overridden by the StyleInclude below but is needed for AvaloniaEdit -->
<StyleInclude Source="avares://Semi.Avalonia/Themes/Index.axaml" />
<StyleInclude Source="avares://AvaloniaEdit/Themes/Fluent/AvaloniaEdit.xaml" />
</Application.Styles>
</Application>