在列表中显示打开的文件对话框

本文关键字:文件 对话框 列表 显示 | 更新日期: 2023-09-27 18:11:20

所以,使用我的openFileDialog与Windows窗体应用程序-我有它,所以当我点击一个按钮,它允许我选择一个文件,这是下面的代码。

    {
        openFileDialog1.InitialDirectory = "Desktop";
        openFileDialog1.Title = "Select Mod Folder";
        openFileDialog1.FileName = "";
        openFileDialog1.ShowDialog();
    }

然后我得到了我想要显示所选文件的列表,使用该程序的人可以在他们想要的单个程序的复选框中勾选。

我不太确定该在列表里写些什么

        // checkedListBox1
        // 
        this.checkedListBox1.AllowDrop = true;
        this.checkedListBox1.CheckOnClick = true;
        this.checkedListBox1.FormattingEnabled = true;
        this.checkedListBox1.Location = new System.Drawing.Point(12, 40);
        this.checkedListBox1.Name = "checkedListBox1";
        this.checkedListBox1.ScrollAlwaysVisible = true;
        this.checkedListBox1.Size = new System.Drawing.Size(217, 304);
        this.checkedListBox1.TabIndex = 8;
        this.checkedListBox1.SelectedIndexChanged += new System.EventHandler(this.checkedListBox1_SelectedIndexChanged);
        // 

我用微软Visual

在列表中显示打开的文件对话框

列表以管道分隔。

c# Files|c#|VB Files|.vb

你可以参考这个来获得更多的信息…http://msdn.microsoft.com/en-us/library/system.windows.forms.filedialog.filter.aspx