mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:08:33 +08:00
- Add album text in lyrics render - Improve song info update and draw algo - Upgrade to .NET 10
38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
using BetterLyrics.WinUI3.ViewModels;
|
|
using CommunityToolkit.Mvvm.DependencyInjection;
|
|
using Microsoft.UI.Xaml;
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
// To learn more about WinUI, the WinUI project structure,
|
|
// and more about our project templates, see: http://aka.ms/winui-project-info.
|
|
|
|
namespace BetterLyrics.WinUI3.Controls
|
|
{
|
|
public sealed partial class AppSettingsControl : UserControl
|
|
{
|
|
public AppSettingsControlViewModel ViewModel => (AppSettingsControlViewModel)DataContext;
|
|
|
|
public AppSettingsControl()
|
|
{
|
|
InitializeComponent();
|
|
DataContext = Ioc.Default.GetRequiredService<AppSettingsControlViewModel>();
|
|
}
|
|
|
|
private async void AutoStartupToggleSwitch_Loaded(object sender, RoutedEventArgs e)
|
|
{
|
|
AutoStartupToggleSwitch.IsOn = await ViewModel.DetectIsAutoStartupEnabledAsync();
|
|
AutoStartupToggleSwitch.Toggled += AutoStartupToggleSwitch_Toggled;
|
|
}
|
|
|
|
private void AutoStartupToggleSwitch_Toggled(object sender, RoutedEventArgs e)
|
|
{
|
|
ViewModel.ToggleAutoStartupAsync(AutoStartupToggleSwitch.IsOn);
|
|
}
|
|
|
|
private void AutoStartupToggleSwitch_Unloaded(object sender, RoutedEventArgs e)
|
|
{
|
|
AutoStartupToggleSwitch.Toggled -= AutoStartupToggleSwitch_Toggled;
|
|
}
|
|
}
|
|
}
|