33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
|
|
<Application
|
||
|
|
x:Class="Cowain.TestProject.App"
|
||
|
|
xmlns="https://github.com/avaloniaui"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:local="using:Cowain.TestProject"
|
||
|
|
xmlns:semi="https://irihi.tech/semi"
|
||
|
|
xmlns:u="https://irihi.tech/ursa"
|
||
|
|
xmlns:u-semi="https://irihi.tech/ursa/themes/semi">
|
||
|
|
|
||
|
|
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
||
|
|
|
||
|
|
<Application.DataTemplates>
|
||
|
|
<local:ViewLocator />
|
||
|
|
</Application.DataTemplates>
|
||
|
|
|
||
|
|
<Application.Styles>
|
||
|
|
<!-- 样式主题 -->
|
||
|
|
<semi:SemiTheme />
|
||
|
|
<u-semi:SemiTheme />
|
||
|
|
<semi:SemiPopupAnimations />
|
||
|
|
<StyleInclude Source="avares://Semi.Avalonia.DataGrid/Index.axaml" />
|
||
|
|
</Application.Styles>
|
||
|
|
|
||
|
|
<Application.Resources>
|
||
|
|
<ResourceDictionary>
|
||
|
|
<ResourceDictionary.MergedDictionaries>
|
||
|
|
<!-- 引入主题资源 -->
|
||
|
|
<ResourceInclude Source="/Assets/_index.axaml" />
|
||
|
|
<ResourceInclude Source="avares://Nodify/Theme.axaml" />
|
||
|
|
</ResourceDictionary.MergedDictionaries>
|
||
|
|
</ResourceDictionary>
|
||
|
|
</Application.Resources>
|
||
|
|
</Application>
|