showing popup in c# .net -
If some condition is satisfied then I want to show in a stylish pop up c # window application. As soon as in Gtalk For web page feeds and every new feed I want to show pop up with some music for information. That's why I can add audio to this app and play the same on Timer Tick for some condition.
create your own pop-up window:
public class MyStylishPopUp : Form {...}
and call it:
var m = New MyStylishPopUp (); M.ShowDialog ();
Comments
Post a Comment