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
26 lines
826 B
C#
26 lines
826 B
C#
using BetterLyrics.WinUI3.Models;
|
|
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 DemoWindowGrid : UserControl
|
|
{
|
|
public DemoWindowGrid()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public static readonly DependencyProperty LyricsWindowStatusProperty =
|
|
DependencyProperty.Register(nameof(LyricsWindowStatus), typeof(LyricsWindowStatus), typeof(DemoWindowGrid), new PropertyMetadata(default));
|
|
|
|
public LyricsWindowStatus LyricsWindowStatus
|
|
{
|
|
get => (LyricsWindowStatus)GetValue(LyricsWindowStatusProperty);
|
|
set => SetValue(LyricsWindowStatusProperty, value);
|
|
}
|
|
}
|