Files
Shrlalgo.RvKits/ShrlAlgo.RvKits/RvMEP/ClashResolveView.xaml.cs

37 lines
1.1 KiB
C#

using System.Windows;
namespace ShrlAlgo.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);
// }
//}
}
}