茫茫網海中的冷日
         
茫茫網海中的冷日
發生過的事,不可能遺忘,只是想不起來而已!
 恭喜您是本站第 1672400 位訪客!  登入  | 註冊
主選單

Google 自訂搜尋

Goole 廣告

隨機相片
IMG_60D_00126.jpg

授權條款

使用者登入
使用者名稱:

密碼:


忘了密碼?

現在就註冊!

屹立不倒的C : [轉貼]C# Yes/No dialog box

發表者 討論內容
冷日
(冷日)
Webmaster
  • 註冊日: 2008/2/19
  • 來自:
  • 發表數: 15771
[轉貼]C# Yes/No dialog box
Yes/No dialog box

Mark
I'm new to C# but know MFC C++. I'm looking for api for launching a yes/no
dialog box which returns a value that can be used for farther processing.

Regards
Mark

Peter Duniho:
I'm new to C# but know MFC C++. I'm looking for api for launching a
yes/no
dialog box which returns a value that can be used for farther processing.

http://msdn.microsoft.com/en-us/libr...essagebox.aspx


kimiraikkonen:
I'm new to C# but know MFC C++. I'm looking for api for launching a yes/no
dialog box which returns a value that can be used for farther processing.

Regards
Mark

MessageBox object is what you're looking for. For more dialog boxes
such as Open/Save Dialogs, look at your toolbox in VS IDE.

A sample for determining MessageBox result:
if (MessageBox.Show("are you sure?","Sure?",MessageBoxButtons.YesNo)
== DialogResult.Yes)
{
MessageBox.Show("Ok clicked");
}
else
{
MessageBox.Show("No clicked");
}

Hope this helps,


原文出處:Yes/No dialog box - C# / C Sharp
前一個主題 | | | |

討論串




Powered by XOOPS 2.0 © 2001-2008 The XOOPS Project|