如何:向文件对话框添加自定义位置

Windows Vista 上的默认打开和保存对话框在标题 为“收藏夹链接”的对话框左侧有一个区域。 此区域称为自定义位置。 OpenFileDialogSaveFileDialog 类允许向 CustomPlaces 集合添加文件夹。

注意

为了使自定义位置显示在 OpenFileDialogSaveFileDialog中,必须将 AutoUpgradeEnabled 属性设置为 true(默认值)。

向文件对话框添加自定义位置

  • 将路径、已知文件夹 GUID 或 FileDialogCustomPlace 对象添加到对话框的 CustomPlaces 集合中。

    下面的代码示例演示如何添加路径:

    OpenFileDialog1.CustomPlaces.Add("C:\MyCustomPlace")  
    
    openFileDialog1.CustomPlaces.Add("C:\\MyCustomPlace");  
    

另请参阅