我想扩展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窗体控件库..
答案 0 :(得分:3)
你真的走错了路。这些对话框是组件,而不是控件。它们是围绕Windows内置对话框的非常薄的包装器。这些对话框本身对.NET一无所知,并且是用非托管代码编写的。它们是Component而不仅仅是普通类的唯一原因是允许您在表单上删除一个。有帮助设计师设置一些属性。
也许“CommonDialog”一词具有误导性。微软称它为“通用”只是因为它们是GUI程序中常用的对话框。并鼓励使用内置的程序,以便每个程序都有一个非常类似的方式,比如打开一个文件。
从CommonDialog派生没有多大意义,因为不需要创建自定义对话框。因为Windows只有内置的,并且它们已经被各自的.NET类包装。您的计划将破坏本机FolderBrowserDialog可以执行的操作。其中不包括显示复选框。这是有充分理由的。
答案 1 :(得分:1)
Hans非常正确,你无法通过从CommonDialog
派生一个新类来解决问题。你可以做的是在文件夹选择器模式下使用原始IFileDialog
组件。您还需要使用IFileDialogCustomize
添加复选框。由于这只是COM,因此从.net。