Implement it as usual form and provide static method for this form.
Something like this:
public static DialogResult Show(string text)
{
MyCustomMessageBox mb = new MyCustomMessageBox();
mb.SetLabelText(text);
return gps.ShowDialog();
}
If you are writing application for PPC you maybe have noticed that all
dialog boxes are fullscreen. How to avoid this behaviour see:
http://groups-beta.google.com/group/...1cfae575d3f668
Best regards,
Sergey Bogdanov
http://www.sergeybogdanov.com
c_xyTopa wrote:
> i want to make my own message box. which possibilities do i have and how
> should i proceed?