优化时钟显示功能

This commit is contained in:
Booker
2024-01-02 19:50:41 +08:00
parent f1b4698878
commit 8fea77c304
5 changed files with 56 additions and 21 deletions

View File

@@ -105,10 +105,26 @@ namespace GeekDesk.ViewModel
private bool? secondsWindow; //秒数窗口 默认打开
private bool? enableEveryThing;
private bool? enableEveryThing; //开启everything
private bool? alwaysTopmost;
private bool? alwaysTopmost; //是否置顶
private bool? showIconTitle = true; //是否显示iconTitle
public bool? ShowIconTitle
{
get
{
if (showIconTitle == null) showIconTitle = false;
return showIconTitle;
}
set
{
showIconTitle = value;
OnPropertyChanged("ShowIconTitle");
}
}
public bool? AlwaysTopmost
{