.net学习之messagebox的各种枚举

来源:互联网 发布:手机淘宝4.0 编辑:程序博客网 时间:2024/06/05 22:56
privatevoid button1_Click(object sender, EventArgs e)  2        {  3             MessageBox.Show("  1  个参数 "  4                );  5        }  6
  7  8  9 10privatevoid button2_Click(object sender, EventArgs e) 11        { 12             MessageBox.Show(" 2 个参数。。 ", 13"亮仔提示" 14                                 ); 15        } 16 17

 18 19 20 21 22privatevoid button3_Click(object sender, EventArgs e) 23        { 24             MessageBox.Show(" 3 个参数。。。 ", 25" 亮仔提示", 26                                MessageBoxButtons.YesNoCancel 27                                ); 28        }  29 30 31 32

 33 34privatevoid button4_Click(object sender, EventArgs e) 35        { 36             MessageBox.Show(" 4 个参数。。。  ", 37" 亮仔提示", 38                                MessageBoxButtons.OKCancel, 39                                MessageBoxIcon.Warning 40                                ); 41        } 42 43 44

 45 46 47 48privatevoid button5_Click(object sender, EventArgs e) 49        { 50             MessageBox.Show(" 5 个参数。。 。  ", 51" 亮仔提示", 52                                MessageBoxButtons.OKCancel, 53                                MessageBoxIcon.Warning, 54                                MessageBoxDefaultButton.Button2 55                                ); 56        } 57 58 59

 60 61 62 63privatevoid button6_Click(object sender, EventArgs e) 64        { 65             MessageBox.Show(" 6 个参数。。。  ", 66" 亮仔提示", 67                                MessageBoxButtons.OKCancel, 68                                MessageBoxIcon.Warning, 69                                MessageBoxDefaultButton.Button2, 70                                 MessageBoxOptions.RtlReading      //ServiceNotification//.RightAlign   // 标题向右对齐。 71                                ); 72        }
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1101.     1个参数。 111  MessageBox.Show(string text); 112//     显示具有指定文本的消息框。 113// 参数:text:     要在消息框中显示的文本。 114// 返回结果:     System.Windows.Forms.DialogResult 值之一。1151162.     2个参数。 117 MessageBox.Show(string text, string caption); 118//     显示具有指定文本和标题的消息框。 119// 参数: 120//   text:      要在消息框中显示的文本。 121//   caption:     要在消息框的标题栏中显示的文本。 122// 返回结果:      System.Windows.Forms.DialogResult 值之一。1231243.     3个参数。 125  MessageBox.Show(string text, string caption, MessageBoxButtons buttons); 126//     显示具有指定文本、标题和按钮的消息框。 127// 参数: 128//   text:      要在消息框中显示的文本。 129//   caption:     要在消息框的标题栏中显示的文本。 130//   buttons:     System.Windows.Forms.MessageBoxButtons 值之一,可指定在消息框中显示哪些按钮。 131// 返回结果:     System.Windows.Forms.DialogResult 值之一。 132// 异常:     133//System.ComponentModel.InvalidEnumArgumentException:     指定的 buttons 参数不是 System.Windows.Forms.MessageBoxButtons 的成员。 134//   System.InvalidOperationException:     试图在运行模式不是用户交互模式的进程中显示 System.Windows.Forms.MessageBox。这是由 System.Windows.Forms.SystemInformation.UserInteractive 属性指定的。 1351364.     4个参数。 137 MessageBox.Show(string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon); 138//     显示具有指定文本、标题、按钮和图标的消息框。 139// 参数: 140//   text:     要在消息框中显示的文本。 141//   caption:     要在消息框的标题栏中显示的文本。 142//   buttons:     System.Windows.Forms.MessageBoxButtons 值之一,可指定在消息框中显示哪些按钮。 143//   icon:     System.Windows.Forms.MessageBoxIcon 值之一,它指定在消息框中显示哪个图标。 144// 返回结果:     System.Windows.Forms.DialogResult 值之一。 145// 异常: 146//   System.ComponentModel.InvalidEnumArgumentException:     指定的 buttons 参数不是 System.Windows.Forms.MessageBoxButtons 的成员。- 或 - 指定的 icon24参数不是 System.Windows.Forms.MessageBoxIcon 的成员。 147//   System.InvalidOperationException:     试图在运行模式不是用户交互模式的进程中显示 System.Windows.Forms.MessageBox。这是由 System.Windows.Forms.SystemInformation.UserInteractive属性指定的。1481495.     5个参数。  150 MessageBox.Show(string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton); 151//     显示具有指定文本、标题、按钮、图标和默认按钮的消息框。 152// 参数: 153//   text:      要在消息框中显示的文本。 154//   caption:     要在消息框的标题栏中显示的文本。 155//   buttons:     System.Windows.Forms.MessageBoxButtons 值之一,可指定在消息框中显示哪些按钮。 156//   icon:     System.Windows.Forms.MessageBoxIcon 值之一,它指定在消息框中显示哪个图标。 157//   default Button:     System.Windows.Forms.MessageBoxDefaultButton 值之一,可指定消息框中的默认按钮。 158// 返回结果:     System.Windows.Forms.DialogResult 值之一。 159// 异常:  160//   System.ComponentModel.InvalidEnumArgumentException:     buttons 不是 System.Windows.Forms.MessageBoxButtons 的成员。- 或 - icon 不是 System.Windows.Forms.MessageBoxIcon的成员。- 或 - defaultButton 不是 System.Windows.Forms.MessageBoxDefaultButton 的成员。 161//   System.InvalidOperationException:     试图在运行模式不是用户交互模式的进程中显示 System.Windows.Forms.MessageBox。这是由 System.Windows.Forms.SystemInformation.UserInteractive属性指定的。 1621636.     6个参数。 164 MessageBox.Show(string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon,MessageBoxDefaultButton defaultButton, MessageBoxOptions options); 165//     显示具有指定文本、标题、按钮、图标、默认按钮和选项的消息框。 166// 参数: 167//   text:      要在消息框中显示的文本。 168//   caption:     要在消息框的标题栏中显示的文本 169//   buttons:    System.Windows.Forms.MessageBoxButtons 值之一,可指定在消息框中显示哪些按钮。 170//   icon:     System.Windows.Forms.MessageBoxIcon 值之一,它指定在消息框中显示哪个图标。 171//   defaultButton:     System.Windows.Forms.MessageBoxDefaultButton 值之一,可指定消息框中的默认按钮。 172//   options:     System.Windows.Forms.MessageBoxOptions 值之一,可指定将对消息框使用哪些显示和关联选项。若要使用默认值,请传入0。 173// 返回结果:     System.Windows.Forms.DialogResult 值之一。 174// 异常: 175//   System.ComponentModel.InvalidEnumArgumentException:     buttons 不是 System.Windows.Forms.MessageBoxButtons 的成员。- 或 - icon 不是 System.Windows.Forms.MessageBoxIcon的成员。- 或 - 指定的 defaultButton 不是 System.Windows.Forms.MessageBoxDefaultButton的成员。 176//   System.InvalidOperationException:     试图在运行模式不是用户交互模式的进程中显示 System.Windows.Forms.MessageBox。这是由System.Windows.Forms.SystemInformation.UserInteractive属性指定的。 177//   System.ArgumentException:     options 同时指定了System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly 和System.Windows.Forms.MessageBoxOptions.ServiceNotification。- 或 - buttons42指定了无效的System.Windows.Forms.MessageBoxButtons 组合。

0 0
原创粉丝点击