DialogResult :: OK不起作用

时间:2012-02-20 04:09:51

标签: .net winforms c++-cli

我在下面的代码中遇到了错误:

if (folderBrowserDialog1->ShowDialog() == DialogResult::OK )
      {

      }

错误发生在DialogResult::OK!编译器说error C2065: 'OK' : undeclared identifier ? 我已经using namespace System::IO;

2 个答案:

答案 0 :(得分:2)

DialogResult似乎不在System::IO命名空间中 - 您是否正在寻找System::Windows::Forms下的那个?如有疑问,请搜索MSDN。

答案 1 :(得分:2)