时间:2021-05-19
本文实例讲述了C# winForm实现的气泡提示窗口功能。分享给大家供大家参考,具体如下:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace WindowsFormsApplication60{ public partial class Form1 : Form { private Button btnShow = null; private Button btnClose = null; private NotifyIcon notifyIcon1 = null; public Form1() { InitializeComponent(); this.Load+=new EventHandler(Form1_Load); } private void Form1_Load(object sender, EventArgs e) { btnShow = new Button();//显示气泡提示窗口 btnShow.Text = "show"; btnShow.Click += new EventHandler(btnShow_Click); btnShow.Location = new Point(10, 10); this.Controls.Add(btnShow); btnClose = new Button();//影藏气泡提示窗口 btnClose.Text = "close"; btnClose.Click += new EventHandler(btnClose_Click); btnClose.Location = new Point(10 + btnShow.Width + 10, 10); this.Controls.Add(btnClose); notifyIcon1 = new NotifyIcon(); notifyIcon1.MouseMove += new MouseEventHandler(notifyIcon1_MouseMove); notifyIcon1.Icon = global::WindowsFormsApplication60.Properties.Resources.Lintway; } /// <summary> /// 鼠标移过显示时间 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> void notifyIcon1_MouseMove(object sender, MouseEventArgs e) { this.notifyIcon1.ShowBalloonTip(1000, "当前时间:", DateTime.Now.ToLocalTime().ToString(), ToolTipIcon.Info);//显示气泡提示 } /// <summary> /// 影藏时间 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> void btnClose_Click(object sender, EventArgs e) { this.notifyIcon1.Visible = false;//设置提示控件不可见 } /// <summary> /// 显示时间 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> void btnShow_Click(object sender, EventArgs e) { this.notifyIcon1.Visible = true;//设置提示控件可见 this.notifyIcon1.ShowBalloonTip(1000, "当前时间:", DateTime.Now.ToLocalTime().ToString(), ToolTipIcon.Info);//显示气泡提示 } }}更多关于C#相关内容感兴趣的读者可查看本站专题:《C#窗体操作技巧汇总》、《WinForm控件用法总结》、《C#数据结构与算法教程》、《C#常见控件用法教程》、《C#面向对象程序设计入门教程》及《C#程序设计之线程使用技巧总结》
希望本文所述对大家C#程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#实现Winform鼠标拖动窗口大小时设定窗口最小尺寸的方法。分享给大家供大家参考,具体如下:winform程序运行过程中,用户用鼠标拖动窗体大
C#中winform中panel重叠无法显示问题:最近开发一个项目有个需求是需要多个模式来回切换的,本来考虑使用多个窗口来实现这个功能,但是这样做浪费资源,而且
在利用C#开发Winform应用程序的时候,我们有可能使用RichTextBox来实现实时显示应用程序日志的功能,日志又分为:一般消息,警告提示和错误等类别。为
本文实例演示了WinForm实现关闭按钮不可用或隐藏的方法,是C#应用程序开发中常见的功能,具体方法如下:关键代码://////privateconstintC
本文所述实例主要实现了WinForm实现按名称递归查找控件的功能,在C#项目开发中有一定的应用价值,分享给大家供大家参考借鉴。关键代码如下://////向下递归