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