1 Star 0 Fork 1

杰克/OstrichPomoadoro

forked from Orchis/OstrichPomoadoro 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
InterruptDialog.xaml.cs 643 Bytes
一键复制 编辑 原始数据 按行查看 历史
Orchis 提交于 2022-10-19 00:41 . 中断弹窗
using System.Windows.Input;
namespace OstrichPomoadoro
{
public partial class InterruptDialog : Controls.OstrichDialog
{
public InterruptDialog(bool bRest)
{
InitializeComponent();
lblContext.Content = bRest ? "赶紧干活" : "休息一会儿吧";
}
private void btnContinue_Click(object sender, System.Windows.RoutedEventArgs e)
{
DialogResult = true;
Close();
}
private void btnReset_Click(object sender, System.Windows.RoutedEventArgs e)
{
DialogResult = false;
Close();
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/lonelyxmas/ostrich-pomoadoro.git
git@gitee.com:lonelyxmas/ostrich-pomoadoro.git
lonelyxmas
ostrich-pomoadoro
OstrichPomoadoro
master

搜索帮助