|
const Property< int > | BufferSize |
| 储存文件名的缓冲区大小,值不能小于MAX_PATH
|
|
const Property< FileDialogFlags > | Flags |
| 对话框标志
|
|
const Property< std::wstring > | Title |
| 对话框标题,设为空字符串可显示默认标题
|
|
const Property< std::wstring > | InitialDir |
| 初始目录
|
|
const ReadOnlyPtrProperty< FileFilter * > | Filter |
| 筛选器
|
|
const Property< int > | FilterIndex |
| 当前筛选器的索引,索引值从0开始
|
|
const ReadOnlyProperty< std::wstring > | FileName |
| 选中文件的路径
|
|
const Property< bool > | MultiSelect |
| 是否允许多选
|
|
const ReadOnlyProperty< sw::List< std::wstring > > | FileNames |
| 所有选中的文件路径
|
|
OPENFILENAMEW * | GetOFN () |
| 获取OPENFILENAMEW指针
|
|
wchar_t * | GetBuffer () |
| 获取指向缓冲区的指针
|
|
void | ClearBuffer () |
| 清空缓冲区,显示对话框前必须调用此函数
|
|
virtual void | ProcessFileName (std::wstring &fileName) |
| 处理文件路径,获取文件路径时会先调用这个函数对返回值进行处理
|
|