Skip to content

Custom message box is a windows form application. Displays a message window, also known as a dialog box, which presents a message to the client. A CustomMessageBox can contain three kinds of message boxes which show diffrent style of message dialogues

Notifications You must be signed in to change notification settings

mshahidrasheed/customMessageBox

Repository files navigation

Custom Message Box, Custom Designed

Custom message box is a windows form application. Displays a message window, also known as a dialog box, which presents a message to the client. A CustomMessageBox can contain three kinds of message boxes which show diffrent style of message dialogues

Step 1:

  • Clone this project and load into Visual Studio
  • Build this project

image

using MyMessageBox;

  • Call Show() function using Class name.

There are three types of message box available

  • MessageBoxNotify
  • MessageBoxOk
  • MessageBoxYesNo

MessageBoxNotify

MessageBoxNotify show notification message and then hide automatically.

image

MessageBoxOk

MessageBoxOk show notification message and then wait for Ok click response.

image

MessageBoxYesNo

MessageBoxYesNo show notification message and then wait for Yes / No click response.

image

For Example

MessageBoxNotify.Show("message", "title", MessageBoxType.INFO);

MessageBoxOk.Show("message", "title", MessageBoxType.INFO);

MessageBoxYesNo.Show("message", "title", MessageBoxType.INFO);

About

Custom message box is a windows form application. Displays a message window, also known as a dialog box, which presents a message to the client. A CustomMessageBox can contain three kinds of message boxes which show diffrent style of message dialogues

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages