对于 Windows Vista 上的默认打开和保存对话框,其左侧有一个标题为**“收藏夹链接”**的区域。 此区域称作自定义区域。使用 OpenFileDialog 和 SaveFileDialog 类可向 CustomPlaces 集合中添加文件夹。
提示
为了使自定义区域能显示在 OpenFileDialog 或 SaveFileDialog 中,AutoUpgradeEnabled 属性必须设置为 true(默认值)。
向文件对话框添加自定义区域
将路径、“已知文件夹”GUID 或 FileDialogCustomPlace 对象添加到对话框的 CustomPlaces 集合中。
下面的代码示例演示了如何添加路径:
OpenFileDialog1.CustomPlaces.Add("C:\MyCustomPlace")
openFileDialog1.CustomPlaces.Add("C:\\MyCustomPlace");
请参见
参考
FileDialogCustomPlacesCollection.Add