Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
何が悪いのだろうと思っていましたが、ここで検索したところ、無効になっているバルーンが原因である可能性があることがわかりましたが、それは私の場合ではありません. 単純なコードを使用していますが、機能しません。ありがとうございました
NotifyIcon ntf = new NotifyIcon(); ntf.BalloonTipText="bla"; ntf.Visible=true; ntf.ShowBalloonTip(3000);
アイコンも追加する必要があります
NotifyIcon ntf = new NotifyIcon(); ntf.BalloonTipText="bla"; ntf.Visible=true; ntf.Icon = new Icon("myApp.ico"); ntf.ShowBalloonTip(3000);