gpt4 book ai didi

C# Windows 窗体 : BindingSource PositionChanged event not firing?

转载 作者:行者123 更新时间:2023-11-30 22:17:38 24 4
gpt4 key购买 nike

我有一个简单的 winform 和一个使用列表作为数据的绑定(bind)源。每当绑定(bind)源位置更改时,我都想采取行动。仔细阅读,看起来我需要的是“positionChanged”事件。但是,在我的应用程序中,我无法触发此事件。

有一个 bindingNavigator 使用 bindingSoure 进行导航和(用于调试)更改当前绑定(bind)源位置的按钮。

我已尝试尽可能地简化它。我的表单代码如下所示:

public partial class Form1 : Form
{
protected List<int> data;

public Form1()
{
InitializeComponent();
data = new List<int>();
data.Add(4);
data.Add(23);
data.Add(85);
data.Add(32);
}

private void Form1_Load(object sender, EventArgs e)
{
bindingSource1 = new BindingSource();
bindingSource1.DataSource = data;
bindingNavigator1.BindingSource = this.bindingSource1;
}

private void bindingSource1_PositionChanged(object sender, EventArgs e)
{
// Debugger breakpoint here.
// Expectation is this code will be executed either when
// button is clicked, or navigator is used to change positions.
int x = 0;
}

private void button1_Click(object sender, EventArgs e)
{
bindingSource1.Position = 2;
}
}

事件处理程序在设计器中自动生成:

        // 
// bindingSource1
//
this.bindingSource1.PositionChanged += new System.EventHandler(this.bindingSource1_PositionChanged);

现在,问题是无论何时我运行它,'PositionChanged' 事件都不会触发。我已验证 bindingSource1.Position 会根据导航器和按钮发生变化。但无论我做什么,事件实际上都不会触发。我猜这在这一点上是非常愚蠢的,或者我完全误解了事件应该在什么时候触发。

使用.NET 4.5

最佳答案

问题出在您的 Form_Load

private void Form1_Load(object sender, EventArgs e)
{
// this overrides the reference you have created in the desinger.cs file
// either remove this line
bindingSource1 = new BindingSource();
// or add this line
// bindingSource1.PositionChanged += bindingSource1_PositionChanged;
bindingSource1.DataSource = data;
bindingNavigator1.BindingSource = this.bindingSource1;
}

当您创建新对象 new BindingSource() 时,它没有订阅事件 PositionChanged。这就是为什么您永远不会遇到断点的原因。

关于C# Windows 窗体 : BindingSource PositionChanged event not firing?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16657309/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com