CSharpc# winForm 应用最小化到任务栏方法(2)-显示气泡通知1在私有函数中添加 /// <summary> /// 隐藏主窗体 并显示状态图标 /// </summary> private void HideMainForm() { this.Hide(); this.notifyIcon.Visible = true; this.notifyIcon.BalloonTipText = R...赞 (0)开心乐窝10年前 (2015-09-03)阅读(516)标签:c#最小化 / c#气泡
CSharpc# winForm 应用最小化到任务栏方法(1)21.从控件拖拽一个NotifyIcon 或者 实例化一个 Notifyicon ( NotifyIcon nf = new NotifyIcon() ) 2.设置 状态图标显示文字 nf.Text = “开心乐窝”; 3.设置 任务栏 显示 Notifyicon nf.Visible=true 4.给窗体添...赞 (0)开心乐窝10年前 (2015-09-03)阅读(473)标签:c#任务栏 / c#最小化