/// <summary>
        /// This method is used to sort out the dialog titles.
        /// </summary>
        /// <param name="title">Title of the dialog box.</param>
        /// <returns>Returns a string representation of dialog title.</returns>
        public static string GetTitle(DialogTitles title)
        {
            string titleName = string.Empty;

            switch (title)
            {
            case DialogTitles.Error:
                titleName = "ERROR";
                break;

            case DialogTitles.Fail:
                titleName = "FAILED";
                break;

            case DialogTitles.Info:
                titleName = "INFO";
                break;

            case DialogTitles.Success:
                titleName = "SUCCESS";
                break;

            case DialogTitles.Warning:
                titleName = "WARNING";
                break;
            }

            return(titleName);
        }
示例#2
0
        /// <summary>
        /// This method is used to show a dialog box with a title and a message.
        /// </summary>
        /// <param name="message">Message to be displayed.</param>
        /// <param name="title">Title to be displayed.</param>
        public void ShowMessage(string message, DialogTitles title)
        {
            string titleMessage = DislogTitleFetcher.GetTitle(title);

            MessageBox.Show(message, titleMessage);
        }