FileDialogCustomPlace Konstruktoren

Definition

Initialisiert eine neue Instanz der FileDialogCustomPlace-Klasse.

Überlädt

Name Beschreibung
FileDialogCustomPlace(Guid)

Initialisiert eine neue Instanz der klasse FileDialogCustomPlace mit einer benutzerdefinierten Stelle, die durch eine Windows Vista GUID für bekannte Ordner identifiziert wird.

FileDialogCustomPlace(String)

Initialisiert eine neue Instanz der FileDialogCustomPlace-Klasse. mit einem angegebenen Ordnerpfad zu einer benutzerdefinierten Stelle.

FileDialogCustomPlace(Guid)

Quelle:
FileDialogCustomPlace.cs
Quelle:
FileDialogCustomPlace.cs
Quelle:
FileDialogCustomPlace.cs
Quelle:
FileDialogCustomPlace.cs
Quelle:
FileDialogCustomPlace.cs

Initialisiert eine neue Instanz der klasse FileDialogCustomPlace mit einer benutzerdefinierten Stelle, die durch eine Windows Vista GUID für bekannte Ordner identifiziert wird.

public:
 FileDialogCustomPlace(Guid knownFolderGuid);
public FileDialogCustomPlace(Guid knownFolderGuid);
new System.Windows.Forms.FileDialogCustomPlace : Guid -> System.Windows.Forms.FileDialogCustomPlace
Public Sub New (knownFolderGuid As Guid)

Parameter

knownFolderGuid
Guid

Ein Guid, der einen Windows Vista bekannten Ordner darstellt.

Beispiele

Im folgenden Codebeispiel wird die Verwendung der FileDialogCustomPlace Methode veranschaulicht. Um dieses Beispiel auszuführen, fügen Sie den folgenden Code in ein Windows Formular ein, und rufen Sie InitializeDialogAndButton aus dem Konstruktor des Formulars oder Load Ereignisbehandlungsmethode auf.

private OpenFileDialog openFileDialog1;
private Button button1;

private void InitializeDialogAndButton()
{
    this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
    this.button1 = new System.Windows.Forms.Button();
    this.button1.Location = new System.Drawing.Point(53, 37);
    this.button1.AutoSize = true;
    this.button1.Text = "Show dialog with custom places.";
    this.button1.UseVisualStyleBackColor = true;
    this.button1.Click += new System.EventHandler(this.button1_Click);
    this.Controls.Add(this.button1);
}

private void button1_Click(object sender, EventArgs e)
{
    // Add Pictures custom place using GUID.
    openFileDialog1.CustomPlaces.Add("33E28130-4E1E-4676-835A-98395C3BC3BB");

    // Add Links custom place using GUID
    openFileDialog1.CustomPlaces.Add(
        new FileDialogCustomPlace(
        new Guid("BFB9D5E0-C6A9-404C-B2B2-AE6DB6AF4968")));

    // Add Windows custom place using file path.
    openFileDialog1.CustomPlaces.Add(@"c:\Windows");

    openFileDialog1.ShowDialog();
}
Private openFileDialog1 As OpenFileDialog
Private WithEvents button1 As Button

Private Sub InitializeDialogAndButton() 
    Me.openFileDialog1 = New System.Windows.Forms.OpenFileDialog()
    Me.button1 = New System.Windows.Forms.Button()
    Me.button1.Location = New System.Drawing.Point(53, 37)
    Me.button1.AutoSize = True
    Me.button1.Text = "Show dialog with custom places."
    Me.button1.UseVisualStyleBackColor = True

    Me.Controls.Add(Me.button1)

End Sub


Private Sub button1_Click(ByVal sender As Object, ByVal e As EventArgs) _
    Handles button1.Click

    ' Add Pictures custom place using GUID.
    openFileDialog1.CustomPlaces.Add("33E28130-4E1E-4676-835A-98395C3BC3BB")

    ' Add Links custom place using GUID
    openFileDialog1.CustomPlaces.Add(New FileDialogCustomPlace _
        (New Guid("BFB9D5E0-C6A9-404C-B2B2-AE6DB6AF4968")))

    ' Add Windows custom place using file path.
    openFileDialog1.CustomPlaces.Add("c:\Windows")

    openFileDialog1.ShowDialog()

End Sub

Hinweise

Eine Liste der verfügbaren Windows Vista bekannten Ordner finden Sie unter Known Folder GUIDs for File Dialog Custom Places or the KnownFolders.h file in the Windows SDK.

Weitere Informationen

Gilt für:

FileDialogCustomPlace(String)

Quelle:
FileDialogCustomPlace.cs
Quelle:
FileDialogCustomPlace.cs
Quelle:
FileDialogCustomPlace.cs
Quelle:
FileDialogCustomPlace.cs
Quelle:
FileDialogCustomPlace.cs

Initialisiert eine neue Instanz der FileDialogCustomPlace-Klasse. mit einem angegebenen Ordnerpfad zu einer benutzerdefinierten Stelle.

public:
 FileDialogCustomPlace(System::String ^ path);
public FileDialogCustomPlace(string path);
public FileDialogCustomPlace(string? path);
new System.Windows.Forms.FileDialogCustomPlace : string -> System.Windows.Forms.FileDialogCustomPlace
Public Sub New (path As String)

Parameter

path
String

Ein Ordnerpfad zum benutzerdefinierten Ort.

Weitere Informationen

Gilt für: