24 lines
797 B
XML
24 lines
797 B
XML
<Application xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="GUI.App"
|
|
Name="Resonance"
|
|
xmlns:local="using:GUI"
|
|
RequestedThemeVariant="Default">
|
|
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
|
|
|
<Application.DataTemplates>
|
|
<local:ViewLocator/>
|
|
</Application.DataTemplates>
|
|
|
|
|
|
<NativeMenu.Menu>
|
|
<NativeMenu>
|
|
<NativeMenuItem Header="关于…" />
|
|
<NativeMenuItem Header="偏好设置…"/>
|
|
</NativeMenu>
|
|
</NativeMenu.Menu>
|
|
|
|
<Application.Styles>
|
|
<FluentTheme />
|
|
</Application.Styles>
|
|
</Application> |