Block Styler——浏览文件控件
浏览文件夹控件:
// 1、获取用户在界面中选择的文件夹路径
NXString filePath = nativeFolderBrowser0->GetProperties()->GetString("Path");
std::string folderPath = filePath.GetLocaleText();// 2、判断路径是否为空
if (folderPath.empty())
{uc1601("请选择要替换文件的路径", 1);
}
else
{//。。。。。
}