Visual Studio设计时间属性 - 表单列表下拉菜单

时间:2010-05-03 19:12:06

标签: c# visual-studio winforms properties design-time

[编辑]为了清楚起见,我知道如何通过反思获得表格列表。我更关注设计时属性网格。

我有一个具有Form类型的公共属性的用户控件。 我希望能够在设计时从下拉菜单中选择一个表格。 我想从set命名空间填充表单下拉列表:UI.Foo.Forms

如果您拥有Control的公共属性,这将有效。在设计时,属性将自动使用表单上的所有控件填充下拉列表,供您选择。我只想用命名空间中的所有表单填充它。

我该怎么做呢?我希望我足够清楚,所以没有混乱。如果可能的话,我正在寻找一些代码示例。我正努力避免在我有其他截止日期前花太多时间在这上面。

提前感谢您的帮助。

2 个答案:

答案 0 :(得分:7)

您可以通过反思轻松获取课程:

var formNames = this.GetType().Assembly.GetTypes().Where(x => x.Namespace == "UI.Foo.Forms").Select(x => x.Name);

假设您从与表单相同的程序集中的代码中调用它,您将获得“UI.Foo.Forms”命名空间中所有类型的名称。然后,您可以在下拉列表中显示此内容,并最终实例化用户再次通过反射选择的任何一个:

Activator.CreateInstance(this.GetType("UI.Form.Forms.FormClassName"));

[编辑]为设计时添加代码:

在您的控件上,您可以创建一个Form属性:

[Browsable(true)]
[Editor(typeof(TestDesignProperty), typeof(UITypeEditor))]
[DefaultValue(null)]
public Type FormType { get; set; }

其中引用了必须定义的编辑器类型。代码非常不言自明,只需要进行极少量的调整,您就可以完全按照自己的意愿生成代码。

public class TestDesignProperty : UITypeEditor
{
    public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
    {
        return UITypeEditorEditStyle.DropDown;
    }

    public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
    {
        var edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService));

        ListBox lb = new ListBox();
        foreach(var type in this.GetType().Assembly.GetTypes())
        {
            lb.Items.Add(type);
        }

        if (value != null)
        {
            lb.SelectedItem = value;
        }

        edSvc.DropDownControl(lb);

        value = (Type)lb.SelectedItem;

        return value;
    }
}

答案 1 :(得分:2)

通过单击选择项目时,下拉列表不会关闭,因此这可能很有用:

为列表框分配click事件处理程序并添加事件处理函数

public class TestDesignProperty : UITypeEditor
{

    // ...

    IWindowsFormsEditorService editorService;

    public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
        {
            // ...
            editorService = edSvc ; // so can be referenced in the click event handler

            ListBox lb = new ListBox();
            lb.Click += new EventHandler(lb_Click);
            // ... 
        }



    void lb_Click(object sender, EventArgs e)
    {
        editorService.CloseDropDown();
    }

}