WPF c#以编程方式添加事件处理程序

本文关键字:添加 事件处理 程序 方式 编程 WPF | 更新日期: 2023-09-27 18:16:39

在我的代码中,我创建了一个textbox数组:

namespace TCalc
{
    public partial class MainWindow : Window
    {
        public TextBox[] pubAltArray;
        public MainWindow()
        {
            InitializeComponent();
            pubAltArray = new TextBox[10];

然后我使用以下代码以编程方式创建文本框:

private void generatePublishedTxtBox()
{
    for (int i = 0; i < 10; i++)
    {
        TextBox pubAlt = new TextBox();
        grid_profile.Children.Add(pubAlt);
        pubAlt.SetValue(Grid.RowProperty, 1);
        ...
        pubAltArray[i] = pubAlt;
    }
}

当每个文本框的内容发生变化时,我想运行一些例程:

private void doTheStuff(object sender, TextChangedEventArgs e)
{
...
} 

所以我试图在定义新的文本框期间添加事件处理程序,但没有成功:

pubAlt.TextChanged += new System.EventHandler(doTheStuff());

pubAlt.TextChanged += RoutedEventHandler(calculateCorAlts());

有什么提示吗?

WPF c#以编程方式添加事件处理程序

尝试:

pubAlt.TextChanged += new TextChangedEventHandler(doTheStuff);

或:

pubAlt.TextChanged += doTheStuff;

两行做同样的事情。第二行只是第一行的简写,因为它使代码更容易阅读。

您正在使用()调用方法。把你的代码改成这样:

pubAlt.TextChanged += new System.EventHandler((s,e) => doTheStuff());
pubAlt.TextChanged += RoutedEventHandler((s,e) =>calculateCorAlts());