1

我正在创建一个自定义控件,在其中创建“列表”类型的属性

Sections 是一个公共类,它有 4 个属性。

控件中的代码如下所示:

    public partial class genericGauge : Control
{
        public genericGauge()
        {
            InitializeComponent();
        }

// Stripped out code not needed for this issue question.

        private List<Sections> indicators = new List<Sections>();

        public List<Sections> Indicators
        {
            get
            { 
                return indicators;                
            }
        }

        protected override void OnPaint(PaintEventArgs e)
        {
            base.OnPaint(e);
            // Stripped out code not needed for this issue question.
        }

}

Sections类如下:

public class Sections
    {
        private string header = "Section1";        
        public string Header
        {
            get {return header;}
            set 
            {
                header = value;
            }
        }

        private float startvalue = 0.0f;        
        public float StartValue 
        {
            get { return startvalue; }
            set
            {
                startvalue = value;
            }
        }

        private float sweepvalue = 0.0f;       
        public float SweepValue
        {
            get { return sweepvalue; }
            set
            {
                sweepvalue = value;
            }
        }

        private Color sectioncolor = new Color();        
        public Color SectionColor
        {
            get {return sectioncolor;}
            set
            {
                sectioncolor = value;
            }
        }
    }

一切似乎都工作正常,除了当我在设计时使用属性浏览器类型编辑器将项目添加到集合时,控件不会重新绘制以反映添加到集合中的内容。

当我在我的测试表单上单击控件外部时,它会被重新绘制。通常使用简单的属性我会使用 Invalidate,但这在这里似乎是不可能的。我还尝试了除 List<> 之外的其他集合类型,它允许有一个 set 访问器,但仍然不会调用 Invalidate。我认为这意味着 SET 永远不会被调用。

我知道如何让它与可扩展属性一起使用,但我没有找到如何使用集合进行此更新。

我希望有人可以帮助我。提前致谢。

4

2 回答 2

3

不使用 List 类,而是使用 ObservableCollection 类,并使用它在列表中添加或删除新部分时获得通知。

private ObservableCollection<Sections> indicators = new ObservableCollection<Sections>();

public IList<Sections> Indicators
{
    get
    { 
        return indicators;                
    }
}

public genericGauge()
{
    InitializeComponent();

    this.indicators.CollectionChanged += this.IndicatorsCollectionChanged;
}

private void IndicatorsCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
    // possibly inspect the NotifyCollectionChangedEventArgs to see if it's a change that should cause a redraw.

    // or not.
    this.Invalidate();
}
于 2013-02-27T15:47:11.503 回答
0

当完全按原样使用您的示例时,Indicators 属性无法在属性窗口中进行编辑。所以我对它做了一些改动。

我添加了一个新类:

// Added this class to deal with the Sections class
public class SectionObservable : ObservableCollection<Sections>
{
        // Added a few methods here for creating a designtime collection if I need to.
}

然后我按照您的建议进行了更改

public genericGauge()
{
            InitializeComponent();
            this.indicators.CollectionChanged += this.IndicatorsCollectionChanged;  // your suggestion
}

并改为这样的属性:

private SectionObservable indicators = new SectionObservable(); // using the SectionObservable class instead 

        public SectionObservable Indicators // using the SectionObservable class instead 
        {
            get
            { 
                return indicators;                
            }
        }

        private void IndicatorsCollectionChanged(object sender, NotifyCollectionChangedEventArgs e) // your suggestion
        {
            this.Invalidate();
        }

现在作为一种魅力。非常感谢你。我很高兴看到有可能如此快速地获得帮助。我非常喜欢这个论坛。

于 2013-02-28T11:35:37.993 回答