-
-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathApp.axaml
More file actions
16 lines (16 loc) · 803 Bytes
/
App.axaml
File metadata and controls
16 lines (16 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:semi="https://irihi.tech/semi"
x:Class="JavaToCSharpGui.App"
Name="Java to C#"
RequestedThemeVariant="Default">
<Application.Resources>
<x:Double x:Key="ControlContentThemeFontSize">14</x:Double>
<FontFamily x:Key="ContentControlThemeFontFamily">Cascadia Code,SF Mono,DejaVu Sans Mono,Menlo,Consolas</FontFamily>
</Application.Resources>
<Application.Styles>
<FluentTheme /> <!-- FluentTheme will get overridden by the SemiTheme below but is needed for AvaloniaEdit -->
<semi:SemiTheme Locale="en-US" />
<semi:AvaloniaEditSemiTheme />
</Application.Styles>
</Application>