2

拿我的 navigationItem 用户控件:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Uboldi.Helpers;

namespace Uboldi
{
    public partial class NavigationItem : UserControl
    {
        public bool IsSelected { get; set; }
        public string Text { get; set; }

        public NavigationItem()
        {
            InitializeComponent();
            RefreshDisplay();
        }

        private void RefreshDisplay()
        {
            if (IsSelected)
                this.BackColor = CustomizationHelper.GetSecondaryColor();
            else
                this.BackColor = CustomizationHelper.GetPrimaryColor();            
        }
    }
}

在 Visual Studio 中,我可以看到 IsSelected 属性,但看不到 Text 属性。 在此处输入图像描述

有什么理由吗?

4

2 回答 2

3

Text 属性继承自 UserControl。在隐藏的地方,用户控件没有任何有意义的方式来显示文本。您必须再次继承它并关闭所有使其隐藏的属性。像这样:

    [Browsable(true)]
    [EditorBrowsable(EditorBrowsableState.Always)]
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
    [Bindable(true)]
    public override string Text {
        get { return base.Text; }
        set { base.Text = value; }
    }
于 2011-01-25T02:24:42.280 回答
1

您需要使用BrowsableAttribute标记您希望在设计时属性列表中可见的属性。

[Browsable(true)]
public bool Text { get; set; } 

猜测是,IsSelected 属性是继承的,并且设置了此属性。我可能已经离开了,因为我认为编译器会警告您,如果是这种情况,您正在遮蔽继承的属性。

于 2011-01-25T00:04:01.613 回答