WinFrom实现气泡提示窗口

气泡提示因为美观友好的界面被广大用户接受,C#也可以实现这种功能,详细设计:新建窗体添加一个notifyIcon组件,两个button,其详细代码如下:

private void button1_Click(object sender, EventArgs e)

              {

                    this.notifyIcon1.Visible = true;

                    this.notifyIcon1.ShowBalloonTip(1000, "当前时间:",DateTime.Now.ToLocalTime().ToString(), ToolTipIcon.Info);

                }

        private void button2_Click(object sender, EventArgs e)

                {

                    this.notifyIcon1.Visible = false;

                }

注意:必须设置notifyIcon的Icon属性不为空才能显示提示!!一开始没有设置Icon,点击一直没有反应。

各个系统的气泡显示方式也是不同的,具体的样式不做赘述。

你可能感兴趣的:(WinFrom实现气泡提示窗口)