2024-09-22 11:05:41 +08:00
|
|
|
|
using System.Windows;
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-02-10 20:53:40 +08:00
|
|
|
|
namespace ShrlAlgo.RvKits.RvMEP
|
2024-09-22 11:05:41 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <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);
|
|
|
|
|
|
// }
|
|
|
|
|
|
//}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|