gpt4 book ai didi

c# - Windows 窗体绑定(bind) : is there an event similar to DataBindingComplete, 但在所有绑定(bind)完成时触发?

转载 作者:太空宇宙 更新时间:2023-11-03 22:12:12 25 4
gpt4 key购买 nike

只有当它的所有初始数据绑定(bind)都完成时,我才需要更改某个 DataGridView 的属性(其绑定(bind)之一的 DataSourceUpdateMode)。

我尝试订阅“DataBindingComplete”事件,但它被触发了太多次(与控件关联的每个绑定(bind)一次或多次);我需要的是更全局的“AllDataBindingsComplete”事件,当控件准备好显示给用户时触发。

作为临时解决方法,我正在使用 MouseDown 事件(我假设当用户能够单击该控件时,这意味着该控件已显示...:) 以及我正在播放的事件与 - SelectionChanged - 在 MouseDown 之后触发):

    protected override void OnMouseDown(MouseEventArgs e)
{
Binding selectedItemsBinding = this.DataBindings["SelectedItems"];
if (selectedItemsBinding != null)
{
selectedItemsBinding.DataSourceUpdateMode = DataSourceUpdateMode.OnPropertyChanged;
}

base.OnMouseDown(e);
}

它有效,但它闻起来像一个丑陋的 hack 很多(而且它被调用了太多次,只有一次就足以满足我的需要)。

有没有更好的办法?

(是的,我正在尝试在 Windows 窗体项目中采用 MVVM,并且我已将可绑定(bind)的“SelectedItems”属性添加到 DataGridView 中...)

最佳答案

我在 Windows Forms 上做了什么form 级别,并且可以即兴创作到您想要的控件,是将 Windows Forms 基类子类化为我自己的。然后,在其构造函数中,将额外的事件调用附加到 Load() 事件。

因此,当所有else完全加载 时,只有 THEN 它才会触发我的自定义方法(子类的)。因为它是附加到事件队列的调用堆栈链的底部,所以我知道它是最后一个,其他一切都已完成...这是概念的一个片段。

public class MyForm : Form
{
public MyForm()
{
this.Load += AfterEverythingElseLoaded;
}

private void AfterEverythingElseLoaded(object sender, EventArgs e)
{
// Do my own things here...
}
}

这个概念也可以应用于 Init() 函数,如果它更适合您的控制...让其中的所有其他内容都被初始化 (),然后您是否执行“AfterInitialized()” "函数。

关于c# - Windows 窗体绑定(bind) : is there an event similar to DataBindingComplete, 但在所有绑定(bind)完成时触发?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6228655/

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