Example #1
0
        public static MessageBoxResult Show(string caption, string title, string first, string second, string third)
        {
            var messageBox = new ThreeButtonsMessageBox();

            messageBox.ShowDialog(caption, title, first, second, third);
            return(messageBox._result);
        }