custom message box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i want to make my own message box. which possibilities do i have and how
should i proceed?
 
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...amework.compactframework/msg/f21cfae575d3f668

Best regards,
Sergey Bogdanov
http://www.sergeybogdanov.com
 
Back
Top