wxFileDialog* ctrl = new wxFileDialog(this, L"Open", "/home/example", "example.test", "|All files (*.*)|*.*", wxFD_OPEN | wxFD_FILE_MUST_EXIST, wxDefaultPosition);
if(ctrl->ShowModal() == wxID_OK)
{
ctrl->GetPath().wx_str()); // = '/'
}
ctrl->Destroy();
无论我做什么,我总是从ctrl-> GetPath()获得“/”,正斜杠。
知道为什么吗?