我在下面的代码中遇到了错误:
if (folderBrowserDialog1->ShowDialog() == DialogResult::OK )
{
}
错误发生在DialogResult::OK
!编译器说error C2065: 'OK' : undeclared identifier
?
我已经using namespace System::IO;
答案 0 :(得分:2)
DialogResult
似乎不在System::IO
命名空间中 - 您是否正在寻找System::Windows::Forms
下的那个?如有疑问,请搜索MSDN。
答案 1 :(得分:2)