我实施了UserControl
,其属性类型为Type
。
public partial class MyUserControl: UserControl
{
public MyUserControl()
{
InitializeComponent();
}
public Type PluginType { get; set; } = typeof(IPlugin);
}
在表单上放置MyUserControl
时,我可以在设计器中看到PluginType
属性,但我无法对其进行编辑。
如何使此属性可编辑?理想情况下,设计师会显示一个编辑器,我可以在其中选择我的程序集(或任何程序集)中的一种类型。有这样的编辑吗?
答案 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的程序集中的类型。