积极答复者
C#自动提示框

问题
答案
-
http://blog.csdn.net/cui55/article/details/948015
2011 c# mvp China. *George读起来像不像“饺子”?我爱吃饺子,我叫George。- 已建议为答案 Lie YouModerator 2012年1月3日 5:05
- 已标记为答案 Lie YouModerator 2012年1月4日 3:04
-
VS里插入个notifyIcon1控件 就可以弹出气泡提示了
private void button1_Click(object sender, EventArgs e)
{
notifyIcon1.BalloonTipTitle = "Hello World!";
notifyIcon1.BalloonTipText = "Hello!";
notifyIcon1.BalloonTipIcon = ToolTipIcon.Info;
notifyIcon1.ShowBalloonTip(1000);}
这样就OK了,希望这个就是你想要的结果
- 已编辑 Allen PPL 2011年12月31日 14:09
- 已建议为答案 Lie YouModerator 2012年1月3日 5:05
- 已标记为答案 Lie YouModerator 2012年1月4日 3:04
全部回复
-
http://blog.csdn.net/cui55/article/details/948015
2011 c# mvp China. *George读起来像不像“饺子”?我爱吃饺子,我叫George。- 已建议为答案 Lie YouModerator 2012年1月3日 5:05
- 已标记为答案 Lie YouModerator 2012年1月4日 3:04
-
VS里插入个notifyIcon1控件 就可以弹出气泡提示了
private void button1_Click(object sender, EventArgs e)
{
notifyIcon1.BalloonTipTitle = "Hello World!";
notifyIcon1.BalloonTipText = "Hello!";
notifyIcon1.BalloonTipIcon = ToolTipIcon.Info;
notifyIcon1.ShowBalloonTip(1000);}
这样就OK了,希望这个就是你想要的结果
- 已编辑 Allen PPL 2011年12月31日 14:09
- 已建议为答案 Lie YouModerator 2012年1月3日 5:05
- 已标记为答案 Lie YouModerator 2012年1月4日 3:04