2 Commits
2.3.10 ... 2.3

Author SHA1 Message Date
liufei
b7431c0408 gitee 链接 2021-09-11 17:10:39 +08:00
liufei
d60435cd61 修复一个小bug 2021-09-11 16:28:55 +08:00
2 changed files with 6 additions and 3 deletions

View File

@@ -28,7 +28,7 @@
Margin="0,0,10,0" Color="#24292F"/>
<hc:Shield Subject="Gitee" Visibility="Visible" Status="Demo-liu"
Command="hc:ControlCommands.OpenLink"
CommandParameter=""
CommandParameter="https://gitee.com/demo_liu/GeekDesk"
Margin="0,5,10,0" Color="#C71D23"/>

View File

@@ -38,9 +38,12 @@ namespace GeekDesk.Control.Windows
InitializeComponent();
this.Topmost = true;
ExeTime.SelectedDateTime = DateTime.Now.AddMinutes(10);
DateTime time = DateTime.Now.AddMinutes(10);
ExeTime.SelectedDateTime = time;
SetTimePanel.Visibility = Visibility.Visible;
this.DataContext = new ToDoInfo();
this.DataContext = new ToDoInfo {
ExeTime = time.ToString("yyyy-MM-dd HH:mm:ss")
};
}
private ToDoInfoWindow(ToDoInfo info)
{