customized MessageBox in c#

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jean  Bredeche

    customized MessageBox in c#

    Hi:

    I am trying to create customized confirmation/error/etc dialogs in my
    application. Up to now we've been using MessageBox.Show and passing it
    the various necessary flags (buttons, icons, etc). By "customized ", I
    mean I want complete control over the color of the messagebox, the
    position/color/size of the buttons, etc.

    Do I need to create a custom form from scratch, or is there a way to
    subclass MessageBox? (I'm guessing I need to create a custom form). If
    I need to create a custom form, is there any way I can make use of the
    standard Windows dialog icons (the MessageBoxIcons ) or do I have to
    create my own icons?

    thanks,
    Jean Bredeche
    bredeche at gmail dot com

  • Dmytro Lapshyn [MVP]

    #2
    Re: customized MessageBox in c#

    Hi Jean,

    I think creating a custom form should be simpler - well, at least I prefer
    my own form when it comes to displaying customized message boxes.
    As for re-using system icons, the SystemIcons class contains them all as
    static properties.

    --
    Sincerely,
    Dmytro Lapshyn [Visual Developer - Visual C# MVP]


    "Jean Bredeche" <bredeche@gmail .com> wrote in message
    news:1113769957 .640758.285680@ f14g2000cwb.goo glegroups.com.. .[color=blue]
    > Hi:
    >
    > I am trying to create customized confirmation/error/etc dialogs in my
    > application. Up to now we've been using MessageBox.Show and passing it
    > the various necessary flags (buttons, icons, etc). By "customized ", I
    > mean I want complete control over the color of the messagebox, the
    > position/color/size of the buttons, etc.
    >
    > Do I need to create a custom form from scratch, or is there a way to
    > subclass MessageBox? (I'm guessing I need to create a custom form). If
    > I need to create a custom form, is there any way I can make use of the
    > standard Windows dialog icons (the MessageBoxIcons ) or do I have to
    > create my own icons?
    >
    > thanks,
    > Jean Bredeche
    > bredeche at gmail dot com
    >[/color]

    Comment

    Working...