How to create a popup from a system tray in a Windows application (and not on the Internet) using C #

I have a winform application in C #. the basic form is usually minimized. When an event occurs, I want to create a small pop-up form that animates over the tray icon with a message, click on it, it displays the main form.

To implement this, am I just creating a simple form? or is there a special system form for this? for example, there is a pop-up message stating that a warning about new mail with msn messenger.

Thanks in advance.

+3
source share
6 answers

NotifyIcon control WinForms. NotifyIcon , ShowBalloonToolTip , . NotifyIcon.DoubleClick event . .

, , .

WPF, WinForms WPF. , .

+1
+1

( ), . Transitions /, .

+1

form.showdialog() , form . WorkingWithWinForms.

, MessageBox. messagebox-show.

+1
source

You must create a normal form.

If you do not want a normal window chrome (title and frame), set FormBorderStyleto None.

0
source

All Articles