|
|
茫茫網海中的冷日
發生過的事,不可能遺忘,只是想不起來而已! |
|
恭喜您是本站第 1729377
位訪客!
登入 | 註冊
|
|
|
|
發表者 |
討論內容 |
冷日 (冷日) |
發表時間:2013/9/27 9:23 |
- 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
|
|
|
討論串
|