In one of my classes, I have got code:
private static void Notify(string url, string author, string mess)
{
Toast slice = new Toast(100000, url, author, mess) { Height = 90 };
slice.Show();
return;
}
public void Job()
{
Notify("http://google.com", "username", "hi all");
while (true)
{
if (Run() == false)
break;
}
/* .... */
}
通知职能用我的文字显示一个小箱。 它运作良好,但如果是在休息之后,则方案会hang。 e 在<代码>Notify(
我试图在另一条路子里发挥这一作用,但出于某种原因,它没有适当工作,也没有显示“我的清单”。 我做了什么错误,你在这种情况下可以做些什么? 英语不好。