我可以阻止ListBox.RefreshItem(对象项)删除并重新添加对象吗?

时间:2013-03-19 18:51:37

标签: c# listbox

我遇到的问题是,当我更新对象时,ListBox会自动删除然后将对象重新添加到列表中,从而调用索引和值更改事件。我能够通过创建自定义ListBox控件来防止这种情况,并且当调用PropertyChangedEvent时,我会引发一个标志,以防止调用基类中的这些事件。现在发生的事情是我的整个引用被新引用替换,除非我重新选择ListBox中的项目,否则我的引用错误。

我基本上想要做的是更改对象中的显示值,然后让它仅更新列表框中的文本。我不希望它删除并重新添加对象/引用/它做什么。这很烦人。

以下是我正在使用的示例代码...

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
        this.myListBox1.SelectedValueChanged += this.onchange;
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        this.myListBox1.Add(new strobj("z"));
        this.myListBox1.Add(new strobj("a"));
        this.myListBox1.Add(new strobj("b"));
        this.myListBox1.Add(new strobj("f"));
        this.myListBox1.Add(new strobj("n"));
        this.myListBox1.Add(new strobj("h"));
        this.myListBox1.Add(new strobj("p"));
        this.myListBox1.Add(new strobj("t"));
        this.myListBox1.Add(new strobj("c"));
        this.myListBox1.Add(new strobj("q"));
    }

    private void onchange(object sender, EventArgs e)
    {
        MessageBox.Show("Hello World");
    }

    int i = 0;
    private void button1_Click(object sender, EventArgs e)
    {


        if (this.myListBox1.SelectedItem != null)
        {
            strobj item = (strobj)this.myListBox1.SelectedItem;
            item.Name1 = i++.ToString();
        }
    }
}

public partial class MyListBox
{
    public MyListBox()
    {
        InitializeComponent();
    }

    public void Add(strobj item)
    {
        item.OnNameChanged += this.MyDispalyMemberChanged;
        this.Items.Add(item);
    }

    bool refreshing = false;
    public void MyDispalyMemberChanged(strobj itemChanged)
    {
        this.refreshing = true;
        this.RefreshItem(this.Items.IndexOf(itemChanged));
        this.refreshing = false;
    }

    protected override void OnSelectedValueChanged(EventArgs e)
    {
        if (!this.refreshing)
        {
            base.OnSelectedValueChanged(e);
        }
    }
}

class strobjCollection : List<strobj>
{
    NameChangeEventHandler NameChangedEvent;
}

delegate void NameChangeEventHandler(strobj sender);

public class strobj
{
    internal NameChangeEventHandler OnNameChanged;

    private string _Name1;
    public string Name1
    {
        get { return this._Name1; }
        set
        {
            this._Name1 = value;
            if (this.OnNameChanged != null)
            {
                this.OnNameChanged(this);
            }
        }
    }

    public int i = 0;
    public string str = "p";

    public strobj(string name)
    {
        this._Name1 = name;
    }

    public strobj()
    {
        this._Name1 = "You did not create this object";
    }

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

1 个答案:

答案 0 :(得分:0)

这就是INotifyPropertyChanged界面的用途。

您不会引发自定义事件,而是使用事件参数中设置的更改属性的名称引发PropertyChanged事件,并且列表框将更新。

See MSDN.