帮助,我无法将属性添加到设计器PropertyGrid中 [英] Help, i can't get my properties into the designer PropertyGrid

查看:94
本文介绍了帮助,我无法将属性添加到设计器PropertyGrid中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这有什么问题?属性LeftImage不会显示在PropertyGrid(WinForms .NET 3.5)中。

What is wrong with this? The property LeftImage doesn't show up in the PropertyGrid (WinForms .NET 3.5)

    private Image _LeftImage;

    /// <summary>
    /// Sets the small image appearing to the left of the trackbar
    /// </summary>

    [
    Description("The small image appearing to the left of the trackbar"),
    Category("Appearance"),
    EditorAttribute(typeof(System.Drawing.Design.ImageEditor), typeof(System.Drawing.Design.UITypeEditor)),
    DefaultValueAttribute(typeof(Image),"null"),
    Browsable(true), EditorBrowsable(EditorBrowsableState.Always)
    ]

    public Image LeftImage
    {
        private get { return _LeftImage; }
        set
        {
            if (value.Height != 16 || value.Width != 16)
            {
                _LeftImage = new Bitmap(value,new Size(16,16));
            }
            else _LeftImage = value;
            Invalidate();
        }
    }

我在哪里出错了??? IDE不会抱怨任何东西,并且可以正常编译,并且所有其他属性都可以正常显示。有什么想法吗?

Where do i go wrong??? The IDE doesn't complain about anything, and it compiles fine, and all the other properties show up alright. Any thoughts?

推荐答案

在LeftImage的get语句上删除私有访问器。将其更改为

Remove the private accessor on get statement of LeftImage. Change it to

get { return m_LeftImage; }

这篇关于帮助,我无法将属性添加到设计器PropertyGrid中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆