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
28 lines
949 B
C#
28 lines
949 B
C#
using BetterLyrics.WinUI3.Models.Settings;
|
|
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 LyricsEffectSettingsControl : UserControl
|
|
{
|
|
public LyricsEffectSettingsControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public static readonly DependencyProperty LyricsEffectSettingsProperty =
|
|
DependencyProperty.Register(nameof(LyricsEffectSettings), typeof(LyricsEffectSettings), typeof(LyricsEffectSettingsControl), new PropertyMetadata(default));
|
|
|
|
public LyricsEffectSettings LyricsEffectSettings
|
|
{
|
|
get => (LyricsEffectSettings)GetValue(LyricsEffectSettingsProperty);
|
|
set => SetValue(LyricsEffectSettingsProperty, value);
|
|
}
|
|
|
|
}
|
|
}
|