0

我想扩展 FolderBrowserDialog 以选择包含所选文件夹的子文件夹(添加复选框以设置是否包含)。我发现我无法扩展基本的 FolderBrowserDialog,因为它是一个密封类。

所以我认为最简单的解决方案是创建一个用户控件,它派生自 CommonDialog(与 FolderBrowserDialog 相同的类),从标准 FolderBrowserDialog 复制代码并稍微改变它,使其也具有“包含子文件夹" 复选框。

但是当我从默认的 FolderBrowserDialog 复制代码时,它给了我一个错误:

missing partial modifier on declaration of type [my_class_name] another partial declaration of this type exists c#

它指出了“[my_class_name].Designer.cs”文件。

namespace my_custom_folder_open
{
    // Summary:
    //     Prompts the user to select a folder. This class cannot be inherited.
    [DefaultEvent("HelpRequest")]
    [DefaultProperty("SelectedPath")]
    [Designer("System.Windows.Forms.Design.FolderBrowserDialogDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
    public sealed class UserControl2 : CommonDialog
    {
        // Summary:
        //     Initializes a new instance of the System.Windows.Forms.FolderBrowserDialog
        //     class.
        public UserControl2();

        // Summary:
        //     Gets or sets the descriptive text displayed above the tree view control in
        //     the dialog box.
        //
        // Returns:
        //     The description to display. The default is an empty string ("").
        [Browsable(true)]
        [DefaultValue("")]
        [Localizable(true)]
        public string Description { get; set; }
        //
        // Summary:
        //     Gets or sets the root folder where the browsing starts from.
        //
        // Returns:
        //     One of the System.Environment.SpecialFolder values. The default is Desktop.
        //
        // Exceptions:
        //   System.ComponentModel.InvalidEnumArgumentException:
        //     The value assigned is not one of the System.Environment.SpecialFolder values.
        [Browsable(true)]
        [Localizable(false)]
        public Environment.SpecialFolder RootFolder { get; set; }
        //
        // Summary:
        //     Gets or sets the path selected by the user.
        //
        // Returns:
        //     The path of the folder first selected in the dialog box or the last folder
        //     selected by the user. The default is an empty string ("").
        [Browsable(true)]
        [DefaultValue("")]
        [Localizable(true)]
        public string SelectedPath { get; set; }
        //
        // Summary:
        //     Gets or sets a value indicating whether the New Folder button appears in
        //     the folder browser dialog box.
        //
        // Returns:
        //     true if the New Folder button is shown in the dialog box; otherwise, false.
        //     The default is true.
        [Browsable(true)]
        [DefaultValue(true)]
        [Localizable(false)]
        public bool ShowNewFolderButton { get; set; }

        // Summary:
        //     Occurs when the user clicks the Help button on the dialog box.
        [Browsable(false)]
        [EditorBrowsable(EditorBrowsableState.Never)]
        public event EventHandler HelpRequest;

        // Summary:
        //     Resets properties to their default values.
        public override void Reset();
        protected override bool RunDialog(IntPtr hWndOwner);
    }
}

哪里可能有问题?

顺便说一句,我已经将该项目创建为 Windows 窗体控件库..

4

2 回答 2

3

你在这方面真的走错了路。这些对话框是组件,而不是控件。它们是 Windows 内置对话框的非常薄的包装器。这些对话框本身对 .NET 一无所知,并且是用非托管代码编写的。它们是 Component 而不仅仅是普通类的唯一原因是允许您将其放在表单上。与设计师一起设置一些属性很有帮助。

也许“CommonDialog”一词具有误导性。微软称其为“通用”只是因为它们是 GUI 程序中常用的对话框。并鼓励使用内置的,以便每个程序都有非常相似的方式来打开文件。

从 CommonDialog 派生没有多大意义,因为不需要创建自定义对话框。因为 Windows 只有内置的,并且它们已经被各自的 .NET 类包装。您的计划将破坏本机 FolderBrowserDialog 的功能。其中不包括显示复选框。它被密封是有充分理由的。

于 2013-04-14T22:16:55.253 回答
1

Hans 是非常正确的,你不能通过从CommonDialog. 您可以做的是IFileDialog在文件夹选择器模式下使用原始组件。您还需要使用IFileDialogCustomize来添加您的复选框。由于这只是 COM,因此从 .net 使用它实际上非常简单。

于 2013-04-15T12:47:40.910 回答