mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 11:11:23 +00:00
18 lines
781 B
XML
18 lines
781 B
XML
<maui:MauiWinUIApplication
|
|
x:Class="MewExplorer.WinUI.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:maui="using:Microsoft.Maui"
|
|
xmlns:local="using:MewExplorer.WinUI">
|
|
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<SolidColorBrush x:Key="WindowCaptionBackground">#201C21</SolidColorBrush>
|
|
<SolidColorBrush x:Key="WindowCaptionBackgroundDisabled">#201C21</SolidColorBrush>
|
|
<SolidColorBrush x:Key="WindowCaptionForeground">#FFF</SolidColorBrush>
|
|
<SolidColorBrush x:Key="WindowCaptionForegroundDisabled">#FFF</SolidColorBrush>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
|
|
</maui:MauiWinUIApplication>
|