我们如何在不重新插入列表框的情况下刷新项目文本?

How we can refresh items text in ListBox without reinserting it?

我有 class TestClass 覆盖了 ToString(returns Name 字段)。 我将 TestClass 的实例添加到 ListBox 中,在某些时候我需要更改其中一个实例的 Name,然后如何刷新它在 ListBox 中的文本?

using System;
using System.Windows.Forms;

namespace TestListBox
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            listBox1.Items.Add(new TestClass("asd"));
            listBox1.Items.Add(new TestClass("dsa"));
            listBox1.Items.Add(new TestClass("wqe"));
            listBox1.Items.Add(new TestClass("ewq"));
        }

        private void button1_Click(object sender, EventArgs e)
        {
            ((TestClass)listBox1.Items[0]).Name = "123";
            listBox1.Refresh(); // doesn't help
            listBox1.Update(); // same of course
        }
    }

    public class TestClass
    {
        public string Name;

        public TestClass(string name)
        {
            this.Name = name;
        }

        public override string ToString()
        {
            return this.Name;
        }
    }
}

您的测试class 需要实现 INotifyPropertyChanged

public class TestClass : INotifyPropertyChanged
{
    string _name;

    public string Name
    {
        get { return _name;}
        set 
        {
              _name = value;
              _notifyPropertyChanged();
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;

    private void _notifyPropertyChanged([CallerMemberName] String propertyName = "")
    {
        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));  
    }

    public TestClass(string name)
    {
        this.Name = name;
    }

    public override string ToString()
    {
        return this.Name;
    }
}

然而,这仅在您使用不依赖于 ToString() 但绑定 属性 名称

的列时才有效

这可以通过更改您的代码来完成:

在 class 的某处声明

BindingList<TestClass> _dataSource = new BindingList<TestClass>();

在initializeComponent中写入

listBox1.DataSource = _dataSource;

然后在 _dataSource 而不是 Listbox 上执行所有操作。

您可以使用 BindingList:

        items = new BindingList<TestClass>( );
        listBox1.DataSource = items;
        listBox1.DisplayMember = "_Name";

然后刷新列表调用:

        items.ResetBindings( );

编辑:另外不要忘记为 Name

创建一个 get 属性
      public string _Name
    {
        get { return Name; }
        set { Name= value; }
    }

尝试

listBox1.Items[0] = listBox1.Items[0];

我遇到了同样的问题,并尝试了各种不同的方法来尝试让项目的显示文本真正反映基础项目的价值。 在浏览了所有可用属性后,我发现这是最简单的。 lbGroupList.DrawMode = DrawMode.OwnerDrawFixed; lbGroupList.DrawMode = DrawMode.Normal; 它触发控件内的适当事件以更新显示的文本。

我使用以下代码:

public static void RefreshItemAt (ListBox listBox, int itemIndex)
{
    if (itemIndex >= 0)
    {
        Rectangle itemRect = listBox.GetItemRectangle(itemIndex);
        listBox.Invalidate(itemRect);
        listBox.Update();
    }
}