Example #1
0
        public static DialogResult Show(string string_0)
        {
            MsgBoxInfo info = new MsgBoxInfo {
                Text = string_0
            };
            MessageBoxST xst = new MessageBoxST(info);

            return(xst.ShowDialog());
        }
Example #2
0
        public static DialogResult Show(string string_0, string string_1, MessageBoxButtons messageBoxButtons_0)
        {
            MsgBoxInfo info = new MsgBoxInfo {
                Text             = string_0,
                Caption          = string_1,
                MessageBoxButton = messageBoxButtons_0
            };
            MessageBoxST xst = new MessageBoxST(info);

            return(xst.ShowDialog());
        }
Example #3
0
 public MessageBoxST(MsgBoxInfo msgBoxInfo_1)
 {
     this.InitializeComponent_1();
     this.msgBoxInfo_0 = msgBoxInfo_1;
 }