首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VC >

VC C++中如何弹出带有 确定 和 取消 按钮的对话框?多谢

2014-01-21 
VC C++中怎么弹出带有 确定 和 取消 按钮的对话框?谢谢我想弹出一个带有确定 和 取消 按钮的对话框,单击确

VC C++中怎么弹出带有 确定 和 取消 按钮的对话框?谢谢
我想弹出一个带有确定 和 取消 按钮的对话框,单击确定,就执行,单击取消就不执行?
谢谢
[解决办法]

         // Initializes the variables to pass to the MessageBox::Show method.
         String^ message = "You did not enter a server name. Cancel this operation?";
         String^ caption = "No Server Name Specified";
         MessageBoxButtons buttons = MessageBoxButtons::YesNo;
         System::Windows::Forms::DialogResult result;

         // Displays the MessageBox.
         result = MessageBox::Show( this, message, caption, buttons );
         if ( result == ::DialogResult::Yes )
         {
            // Closes the parent form. 
            this->Close();
         }

热点排行