具有Type类型属性的UserControl

时间:2016-03-02 13:52:43

标签: c# winforms visual-studio user-controls design-time

我实施了UserControl,其属性类型为Type

public partial class MyUserControl: UserControl
{
    public MyUserControl()
    {
        InitializeComponent();
    }

    public Type PluginType { get; set; } = typeof(IPlugin);
}

在表单上放置MyUserControl时,我可以在设计器中看到PluginType属性,但我无法对其进行编辑。

如何使此属性可编辑?理想情况下,设计师会显示一个编辑器,我可以在其中选择我的程序集(或任何程序集)中的一种类型。有这样的编辑吗?

1 个答案:

答案 0 :(得分:2)

使用Editor属性告知将使用类来编辑属性:

[Editor("Mynamespace.TypeSelector , System.Design", typeof(UITypeEditor)), Localizable(true)]
public Type PluginType { get; set; }

定义TypeSelector类:

public class TypeSelector : UITypeEditor
{
    public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
    {
        if (context == null || context.Instance == null)
            return base.GetEditStyle(context);

        return UITypeEditorEditStyle.Modal;
    }
    public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
    {
        IWindowsFormsEditorService editorService;

        if (context == null || context.Instance == null || provider == null)
            return value;

        editorService = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService));

        FormTypeSelector dlg = new FormTypeSelector();
        dlg.Value = value;
        dlg.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
        if (editorService.ShowDialog(dlg) == System.Windows.Forms.DialogResult.OK)
        {
            return dlg.Value;
        }
        return value;
    }
}

只剩下剩下的就是实现FormTypeSelector,您可以在其中选择类型并将其分配给Value属性。在这里,您可以使用反射来过滤实现IPlugin的程序集中的类型。