Monday, 9 September 2013

custom single line messagebox

custom single line messagebox

I'm trying to make a custom message box for my application. The problem
is, I want to code it in a way so that I can use it as regular message
box.
MyCustomBox("My Message");
intead of doing
FormMessage frm = new FormMessage();
frm.message = "My Message";
frm.show();
How can I accomplish this? Thanks!

No comments:

Post a Comment