Files
Shrlalgo.RvKits/Sai.RvKits/RvMEP/ClashResolveView.xaml.cs
2024-09-22 11:05:41 +08:00

38 lines
1.1 KiB
C#

using System.Windows;
using Wpf.Ui.Appearance;
namespace Sai.RvKits.RvMEP
{
/// <summary>
/// ClashResolveView.xaml 的交互逻辑
/// </summary>
public partial class ClashResolveView
{
public ClashResolveView()
{
InitializeComponent();
//ApplicationThemeManager.Apply(this);
//ApplicationThemeManager.Changed -= ApplicationThemeManager_Changed;
//ApplicationThemeManager.Changed += ApplicationThemeManager_Changed;
}
//private void ApplicationThemeManager_Changed(ApplicationTheme currentApplicationTheme, Color systemAccent)
//{
// ApplicationThemeManager.Apply(this);
//}
//private void Button_Click(object sender, RoutedEventArgs e)
//{
// if (ApplicationThemeManager.GetAppTheme()==ApplicationTheme.Light)
// {
// ApplicationThemeManager.Apply(ApplicationTheme.Dark);
// }
// else
// {
// ApplicationThemeManager.Apply(ApplicationTheme.Light);
// }
//}
}
}