FileDialogCustomPlace 构造函数

定义

初始化 FileDialogCustomPlace 类的新实例。

重载

FileDialogCustomPlace(Guid)

使用指定的已知文件夹 GUID 初始化 FileDialogCustomPlace 类的新实例。

FileDialogCustomPlace(String)

使用指定的路径初始化 FileDialogCustomPlace 类的新实例。

FileDialogCustomPlace(Guid)

使用指定的已知文件夹 GUID 初始化 FileDialogCustomPlace 类的新实例。

public:
 FileDialogCustomPlace(Guid knownFolder);
public FileDialogCustomPlace (Guid knownFolder);
new Microsoft.Win32.FileDialogCustomPlace : Guid -> Microsoft.Win32.FileDialogCustomPlace
Public Sub New (knownFolder As Guid)

参数

knownFolder
Guid

已知文件夹的 GUID。

注解

可以从Windows SDK中包含的 KnownFolders.h 文件获取 GUID。 应用程序还可以注册新的 GUID。

适用于

FileDialogCustomPlace(String)

使用指定的路径初始化 FileDialogCustomPlace 类的新实例。

public:
 FileDialogCustomPlace(System::String ^ path);
public FileDialogCustomPlace (string path);
new Microsoft.Win32.FileDialogCustomPlace : string -> Microsoft.Win32.FileDialogCustomPlace
Public Sub New (path As String)

参数

path
String

文件夹的路径。

适用于