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
20 lines
595 B
C#
20 lines
595 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace BetterLyrics.WinUI3.Models
|
|
{
|
|
public partial class LiveStates : ObservableRecipient
|
|
{
|
|
[ObservableProperty][NotifyPropertyChangedRecipients] public partial LyricsWindowStatus LyricsWindowStatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// 在需要暂时禁用监听歌词窗口位置大小变化时使用
|
|
/// </summary>
|
|
public bool IsLyricsWindowStatusRefreshing { get; set; } = false;
|
|
|
|
public LiveStates()
|
|
{
|
|
LyricsWindowStatus = new LyricsWindowStatus();
|
|
}
|
|
}
|
|
}
|