本文介绍了System :: Windows :: Forms :: NotifyIcon:隐藏Microsoft.Explorer.Notification。{...}的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,

我使用此代码显示通知:

I use this code to display a notification :

System :: Windows :: Forms: :NotifyIcon notifyIcon;

notifyIcon.Icon = System :: Drawing :: SystemIcons :: Information;

notifyIcon .BalloonTipTitle =" Title";

notifyIcon.BalloonTipText ="我的消息" ;;

notifyIcon。 BalloonTipIcon = System :: Windows :: Forms :: ToolTipIcon :: Info;

notifyIcon.Visible = true;

notifyIcon.ShowBalloonTip(2000);

通知

http://pol2095.free.fr/img/ms_explo_notif .png

http://pol2095.free.fr/img/ms_explo_notif.png

是否可以隐藏Microsoft.Explorer.Notification。{...}?

is-it possible to hide Microsoft.Explorer.Notification.{...} ?

谢谢

推荐答案

感谢您在此发帖。

在我的vs2017中测试过,它显示了我的WinForm应用程序的名称。似乎额外的信息与图标有关。

As tested in my vs2017, it shows the name of my WinForm application. It seems the extra information is related to the icon.

对于这种情况,我建议你给微软发帖子这个问题就可以了。或者点击帮助 - >发送反馈 - >报告你的问题。

For this case now, I suggest you connect to Microsoft and post this issue on it. Or click Help->Send Feedback->Report a Problem in your vs.

您的理解与合作将不胜感激。

Your understanding and cooperation will be grateful.

最诚挚的问候,

Baron Bi


这篇关于System :: Windows :: Forms :: NotifyIcon:隐藏Microsoft.Explorer.Notification。{...}的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 08:15