ListBox.SelectedIndexChanged 第一次没有触发 [英] ListBox.SelectedIndexChanged not firing on first occasion

查看:37
本文介绍了ListBox.SelectedIndexChanged 第一次没有触发的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 ListBox 绑定到一个默认为空的 BindingList.
当所选索引发生更改时,它应该使用来自所选对象的数据更新其他控件.
问题是 SelectedIndexChanged 事件未在第一个条目上触发(索引从 -1 更改为 0).
但是,当我再次单击第一个条目(尽管在这种情况下索引没有改变)以及添加更多条目时,它确实会触发.
我检查了属性 myListBox.SelectedIndex ,它实际上从 -1 更改为 0,但由于某种原因没有调用事件处理程序.有谁知道它为什么这样做以及如何解决它?

I have a ListBox bound to a BindingList which is empty by default.
When the selected index changes it's supposed to update other controls with data from the selected object.
The problem is that the SelectedIndexChanged event is not firing on the first entry (index changing from -1 to 0).
It does fire however when I'm clicking on the first entry again (although index is not changing in this case) and when adding any more entries.
I checked the property myListBox.SelectedIndex and it does in fact change from -1 to 0 but for some reason doesn't call the event handler. Does anyone know why it's doing this and how to fix it?

这是我的代码:

public partial class main : Form
{
    // The class of objects in my BindingList
    [Serializable]
    public class DisplayDefinition : INotifyPropertyChanged
    {
        private string _name;
        private int _width, _height, _posx, _posy;

        public string Name { get { return _name; } set { _name = value; NotifyPropertyChanged("Name"); } }
        public int Width { get { return _width; } set { _width = value; NotifyPropertyChanged("Width"); } }
        public int Height { get { return _height; } set { _height = value; NotifyPropertyChanged("Height"); } }

        public event PropertyChangedEventHandler PropertyChanged;
        private void NotifyPropertyChanged(string s)
        {
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(s));
        }
    }

    // Defining the BindingList 
    BindingList<DisplayDefinition> displaydefinitions = new BindingList<DisplayDefinition>();

    // Binding the list to my listbox 
    public main()
    {
        InitializeComponent();
        listDisplays.DataSource = displaydefinitions;
        listDisplays.DisplayMember = "Name";
    }

    // Button adding a new object to the list
    private void btnNewDisplay_Click(object sender, EventArgs e)
    {
        DisplayDefinition d = new DisplayDefinition();
        displaydefinitions.Add(d);
        listDisplays.SelectedItem = d;
    }

    private void listDisplays_SelectedIndexChanged(object sender, EventArgs e)
    {
        DisplayDefinition d = (DisplayDefinition)listDisplays.SelectedItem;
        // Do something with "d" ...
    }
}

推荐答案

问题:

此行为仅在将 ListBox 与数据源一起使用时发生,而在手动填充 ListBox 时不会发生.

The problem:

This behavior only occurs when using the ListBox with a data source, and doesn't occur when filling the ListBox manually.

将第一项添加到数据源时,默认情况下会选择第一项而不会触发 SelectedIndexChanged 事件(不知道为什么!)成为 ListBox 中的错误,这使得设置 SelectedItemSelectedIndex 属性无用.

When adding the first item to the data source, the first item gets selected by default without firing the SelectedIndexChanged event (not sure why!) which seems to be a bug in ListBox, and that makes setting the SelectedItem or SelectedIndex property useless.

您可以在设置实际 SelectedIndex/SelectedItem 之前将 SelectedIndex 属性更改为临时索引 (-1) 以触发SelectedIndexChanged 事件.

You can change the SelectedIndex property to a temporary index (-1) before setting the actual SelectedIndex/SelectedItem in order to trigger the SelectedIndexChanged event.

应该可以使用以下方法:

// Button adding a new object to the list
private void btnNewDisplay_Click(object sender, EventArgs e)
{
    DisplayDefinition d = new DisplayDefinition();
    d.Name = "SomeName";
    displaydefinitions.Add(d);
    listDisplays.SelectedIndex = -1;
    listDisplays.SelectedItem = d;
}

private void listDisplays_SelectedIndexChanged(object sender, EventArgs e)
{
    if (listDisplays.SelectedIndex == -1) return;
    DisplayDefinition d = (DisplayDefinition)listDisplays.SelectedItem;
    // Do something with "d" ...
    Console.WriteLine(d.Name);
}

希望有帮助:)

这篇关于ListBox.SelectedIndexChanged 第一次没有触发的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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