PropertyGrid中的自定义下拉列表编辑器控件以白色显示

时间:2013-06-05 01:34:13

标签: controls custom-controls propertygrid

使用PropertyGrid控件进行了一些运行,现在偶然发现了一个奇怪的问题。 我在一个有点掩码的类中有一个Uint32属性。 所以我决定使用32个按钮创建一个自定义下拉菜单UserControl,以使Uint32可编辑。 这是类(没有按钮点击处理程序):

class MaskEditorControl : UserControl, IIntegerMaskControl
{
        public MaskEditorControl()
        {
            InitializeComponent();
        }

        public UInt32 ModifyMask(IServiceProvider provider, UInt32 mask)
        {
            IWindowsFormsEditorService editorService = null;
            if (provider != null)
                editorService = provider.GetService(typeof(IWindowsFormsEditorService)) as IWindowsFormsEditorService;

            if (editorService != null)
            {
                m_mask = mask;
                checkBox0.CheckState = (m_mask & (1 << 0)) == 0 ? CheckState.Unchecked : CheckState.Checked;
                checkBox1.CheckState = (m_mask & (1 << 1)) == 0 ? CheckState.Unchecked : CheckState.Checked;
                checkBox2.CheckState = (m_mask & (1 << 2)) == 0 ? CheckState.Unchecked : CheckState.Checked;
                editorService.DropDownControl(this);
            }

            return m_mask;
        }
        private UInt32 m_mask = 0;

}

ModifyMask(...)是IIntegerMaskControl接口的实现函数,它从另一个类调用:

public interface IIntegerMaskControl
{
    UInt32 ModifyMask(IServiceProvider provider, UInt32 mask);
}

public class IntegerMaskEditor : UITypeEditor
{
    public static IIntegerMaskControl control = null;

    public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
    {
        return UITypeEditorEditStyle.DropDown;
    }

    public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
    {
        if (control == null)
            return "Error: IIntegerMaskControl not set!";

        return control.ModifyMask(provider, (UInt32)value);
    }
}

这是物业本身:

    [System.ComponentModel.CategoryAttribute("Base")]
    [Editor(typeof(IntegerMaskEditor), typeof(UITypeEditor))]
    public UInt32                                   renderMask { get; set; }

它有效,但是我的控件显示为白色(包括按钮),看起来不对。我找不到原因。以下是屏幕截图的链接:that is how the control looks like in action。 任何人都有任何关于为什么以及如何避免它的想法?我可以打电话给表格,但我宁愿坚持下拉。

提前致谢!

1 个答案:

答案 0 :(得分:1)

属性网格使用ViewBackColor属性显示下拉颜色。我没有看到任何其他属性允许更改下拉颜色。

但是,下拉列表中显示的控件是您可以修改的控件(表单)的父级,使用如下代码:

public partial class MaskEditorControl : UserControl, IIntegerMaskControl
{
    private Color _initialBackColor;

    public MaskEditorControl()
    {
        InitializeComponent();
        _initialBackColor = BackColor;
    }

    protected override void OnParentChanged(EventArgs e)
    {
        base.OnParentChanged(e);
        if (Parent != null)
        {
            Parent.BackColor = _initialBackColor;
        }
    }
}