Is there any way to have a default MessageBox.Show() caption? Let says I would like to have my application name as Message Box caption and I don't want to input MessageBox.Show(msg, ApplicationName) all the time. I just want to call MessageBox.Show(msg).
|
|
|
|
|
|
|
make Global function like this:
now when you want to show message just write:
|
||
|
|
|
|
No, but you could write a helper method that does what you want. |
||
|
|
|
|
I don't believe so. But why not just create a wrapper function that places this default caption into the MessageBox and they you would just call the wrapper function. |
||
|
|
|
|
A wrapper function would be best but you could inherit the MessageBox control and find the text from the application's active window. |
||
|
|
