if (timecheck()) { notifyIcon1.BalloonTipText = textBox1.Text; notifyIcon1.BalloonTipTitle = "a new message!"; this.notifyIcon1.ShowBalloonTip(3000); }
输入提示语言是在textbox里面输入。
运行以后就显示题目上的错误。 如果把textBox1.Text随便改一个字符串都是好用的。
谢谢 大家帮我看看哪里错啦。
------解决方案--------------------
C# code
if (timecheck())
{
notifyIcon1.BalloonTipText =(textBox1.Text==string.Empty)?"对不起,无可奉告!": textBox1.Text;
notifyIcon1.BalloonTipTitle = "a new message!";
this.notifyIcon1.ShowBalloonTip(3000);
}
------解决方案-------------------- notifyIcon1.BalloonTipText = textBox1.Text ?? "";