.net - New message pop up window on background c# -


i need pop window displayed on bottom right side of screen. it's supposed pop when new message received within software. how can program it? create new form , use it? how can program run on background without interrupting other user actions?

thanks.

check out notifyicon.showballoontip. , here's example.

basically, add notifiyicon form, , (from msdn page linked above):

void form1_doubleclick(object sender, eventargs e) {     notifyicon1.visible = true;     notifyicon1.showballoontip(20000, "information", "this text",         tooltipicon.info ); } 

Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -