1

我根据 MSDN 的演练http://msdn.microsoft.com/en-us/library/ms171840.aspx为我的笑脸类型编写了一个自定义 UITypeEditor

当用户单击省略号时,我的 UITypeEditor 将启动一个模式对话框。

public class SmileyEditor : UITypeEditor
{
    public override UITypeEditorEditStyle GetEditStyle(System.ComponentModel.ITypeDescriptorContext context)
    {
        return UITypeEditorEditStyle.Modal;
    }

经过 MUCH PAIN 之后,我发现如果我的类型是类,它可以工作,但如果它是枚举则不行。这是怎么回事?

    [Editor(typeof(SmileyEditor), typeof(System.Drawing.Design.UITypeEditor))]
    public Smiley face { get; set; }

如果 Smiley 类型是一个枚举,那么属性网格不会显示省略号按钮,只是一个下拉菜单。为什么?

4

1 回答 1

1

显然,当系统类型编辑器存在时,PropertyGrid 更喜欢它而不是自定义编辑器。一种解决方法是使用 TypeConvertorAttribute 注释您的类型,引用覆盖方法的 TypeConvertor GetStandardValuesSupported。见https://stackoverflow.com/a/4067173/284795

于 2012-09-25T11:03:17.633 回答