1.请教,为什么ShowBalloonTip不显示气泡提示啊
给你一段可以显示的代码
01.//窗体大小改变事件
02. private void Form1_SizeChanged(object sender, EventArgs e)
03. {
04. try
05. {
06. //最小化
07. if (this.WindowState == FormWindowState.Minimized)
08. {
09. //不显示窗体
10. this.ShowInTaskbar = false;
11. //托盘可见
12. this.notifyIcon1.Visible = true;
13.
14. //气球提示
15. this.notifyIcon1.ShowBalloonTip(3, "提示", "系统仍在运行!\n如要打开,请点击图标", ToolTipIcon.Info);
16.
17. }
18. }
19. catch (Exception ex)
20. {
21.
22. }
23. }
24.
25. //加载事件
26. private void Form1_Load(object sender, EventArgs e)
27. {
28. InitializeComponent();
29. try
30. {
31. this.Text = "实现最小托盘";
32. //this.notifyIcon1.Icon = new Icon("技术管理.ico");//设置当前图标
33. this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
34. notifyIcon1.Icon = new Icon("技术管理.ico");//指定一个图标
35. notifyIcon1.Visible = false;
36. notifyIcon1.Click += new System.EventHandler(this.notifyIcon1_Click);
37. this.SizeChanged += new System.EventHandler(this.Form1_SizeChanged);
38. }
39. catch (Exception ex)
40. {
41.
42. }
43. }
44.
45.
46.
47.
48.
49. private void notifyIcon1_Click(object sender, EventArgs e)
50. {
51. try
52. {
53. if (this.WindowState == FormWindowState.Minimized)
54. this.WindowState = FormWindowState.Normal;
55. this.Activate();
56. this.notifyIcon1.Visible = false;
57. this.ShowInTaskbar = true;
58. }
59. catch (Exception ex)
60. {
61.
62. }
63. }
2.Win10系统的消息通知框怎么改成Win7的气泡方式
具体修改步骤如下:1、在Cortana搜索栏或运行中输入regedit后回车,进入注册表编辑器(也可以使用WIN+R在运行中输入regedit回车打开)2、定位到HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer3、新建DWORD(32位)值(如上图)Win7 /win7/,重命名为、将数值数据修改为1(如上图)5、点击确定后重启文件资源管理器或重启电脑修改后的Windows10通知形式就变成了“气球”样式,显示时间更长。
3.为什么气泡通知没有了
1注册表
运行“regedit”
HKEY_CURRENT_USER - Software - Microsoft - Windows - CurrentVersion - Explorer - Advanced
查找(新建)“EnableBalloonTips”,值改为“1”
2组策略
运行“gpedit.msc”
“本地计算机”策略 - 用户配置 - 管理模板 - 任务栏和开始菜单 - 删除开始菜单项目上的“气球提示”,设为未配置 确定
4.win10怎么设置桌面七彩动态泡泡
win10设置桌面七彩动态泡泡即为设置七彩动态泡泡屏保即可完成。
工具:win10系统电脑一台
步骤:
1、打开win10系统电脑,桌面的空白处右键,点击弹出菜单的个性化。
2、点击屏幕保护程序,选择七彩动态泡泡的屏幕保护程序。
3、点击旁边的设置按钮对屏保程序进行相关的设置。确定即可完成。
转载请注明出处windows之家 » win10不显示气泡通知