當前位置: 首頁>>代碼示例>>C#>>正文


C# FileDialogCustomPlacesCollection類代碼示例

本文整理匯總了C#中System.Windows.Forms.FileDialogCustomPlacesCollection的典型用法代碼示例。如果您正苦於以下問題:C# FileDialogCustomPlacesCollection類的具體用法?C# FileDialogCustomPlacesCollection怎麽用?C# FileDialogCustomPlacesCollection使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


FileDialogCustomPlacesCollection類屬於System.Windows.Forms命名空間,在下文中一共展示了FileDialogCustomPlacesCollection類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: InitializeDialogAndButton

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();
}
開發者ID:.NET開發者,項目名稱:System.Windows.Forms,代碼行數:30,代碼來源:FileDialogCustomPlacesCollection


注:本文中的System.Windows.Forms.FileDialogCustomPlacesCollection類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。