MessageBox.Show()的各類用法

【函數】 <整型> MessageBox(<字符串> Text, <字符串> Title, <整型> nType,MessageBoxIcon);windows

【函數說明】 彈出一個消息框。函數

【語法】spa

參數:code

Text <字符串>,消息框的正文;orm

Title <字符串>,消息框的標題;blog

nType <整型>,消息框的類型。繼承

返回值:<整型>,用戶在消息框上點擊關閉時的選擇的按鈕。 MessageBoxIcon:對話框上顯示的圖標樣式。字符串

【說明】get

 1 MessageBox("消息內容", "返回值 肯定1",MessageBoxButtons.OK,MessageBoxIcon.Question);
 2 
 3 MessageBox("消息內容",, "返回值 肯定1 取消2",MessageBoxButtons.OKCancel, MessageBoxIcon.Asterisk);
 4 
 5 MessageBox("消息內容", "返回值 終止3 重試4 忽略5",MessageBoxButtons.AbortRetryIgnore, MessageBoxIcon.Error);
 6 
 7 MessageBox("消息內容", "返回值 是6 否7 取消2",MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation);
 8 
 9 MessageBox("消息內容", "返回值 是6 否7",MessageBoxButtons.YesNo, MessageBoxIcon.Hand);
10 
11 MessageBox("消息內容", "返回值 重試4 取消2",MessageBoxButtons.RetryCancel, MessageBoxIcon.Information);
12 
13 MessageBoxIcon: 全部圖標樣式
14 
15 MessageBoxIcon.Question
16 
17 MessageBoxIcon.Asterisk
18 
19 MessageBoxIcon.Information
20 
21 MessageBoxIcon.Error
22 
23 MessageBoxIcon.Stop
24 
25 MessageBoxIcon.Hand
26 
27 MessageBoxIcon.Exclamation
28 
29 MessageBoxIcon.Warning
30 
31 MessageBoxIcon.None

 

MessageBox函數MessageBox()函數MessageBox是標準的windows Api函數只能在CWnd類的繼承類中使用,在C#中使用時,一般用MessageBox的show方法來實現對話框的彈出,命名空間System.Windows.Formsit

應用實例: DialogResult r1 = MessageBox.Show ( "是否肯定?" , "垃圾處理!" , MessageBoxButtons.AbortRetryIgnore , MessageBoxIcon.Question ) ;

int ss1=(int)r1 ;

if ( ss1==3 ){ }

if ( ss1==4 ){ }

if ( ss1==5){ }

===============================================================================================

實例1:MessageBox.Show("樂博網 VB.Net愛好者的組織" & vbCrLf & "期待您的加入!", "樂博網提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1)

效果圖1:

MessageBox.Show()的各類用法 - china_xuhua - 許華

實例2: MessageBox.Show("樂博網 VB.Net愛好者的組織" & vbCrLf & "期待你的加入!", "樂博網提示", MessageBoxButtons.AbortRetryIgnore, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button3)

效果圖2:

MessageBox.Show()的各類用法 - china_xuhua - 許華

相關文章
相關標籤/搜索