我正在尝试在WinForm应用程序中使用CommonOpenFileDialog,我希望用户留在对话框中,直到选择了文件夹或最终手动关闭了对话框
if (setTexturesFolderDialog != null)
{
setTexturesFolderDialog.Focus(); //this do not exist
return;
}
setTexturesFolderDialog = new CommonOpenFileDialog()
{
IsFolderPicker = true
};
我该怎么做?