Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1.45 KB

File metadata and controls

41 lines (26 loc) · 1.45 KB

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);