我有一个自定义活动,它有几个参数和几个属性。将活动放入重新托管的设计器时,参数和属性都可以从属性窗口中看到,用户可以在其中输入值或变量名称等。
对于其中一个属性(在属性窗口中),我不希望用户能够输入它,而是用组合框替换文本框,以便他们可以从值列表中进行选择。这个,我似乎找不到答案。
我使用了标记为已解决的现有条目中的一些代码,但我的要求略有不同。
在我的自定义活动中,我在相关属性上方放置了以下内容:
[EditorAttribute(typeof(ComboBoxTest), typeof(System.Drawing.Design.UITypeEditor))]
并创建了 ComboBoxTest 类,继承自 UITypeEditor:
public class ComboBoxTest : UITypeEditor
{
public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
{
return UITypeEditorEditStyle.DropDown;
}
public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
{
var editorService = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService));
ListBox list = new ListBox();
//ComboBox list = new ComboBox();
// Your code here to populate the list box with your items
list.Items.Add("A");
list.Items.Add("B");
list.Items.Add("C");
EventHandler onclick = (sender, e) =>
{
editorService.CloseDropDown();
};
list.Click += onclick;
editorService.DropDownControl(list);
list.Click -= onclick;
return (list.SelectedItem != null) ? list.SelectedItem : null;
}
}
但是,将活动放入设计器时,该属性在属性窗口中仍然有文本框,并且没有出现组合框。我什至无法调试它,因为它没有遇到任何断点。
是否有人会碰巧知道 A)我的做法是否正确或 B)如果我在某处有错误,甚至 C)我应该使用更好的方法。
我希望这一切都是有道理的。感谢您的阅读!
亲切的问候,迈克尔