在我的代码中,我创建了一个TextBoxes数组:
namespace TCalc
{
public partial class MainWindow : Window
{
public TextBox[] pubAltArray;
public MainWindow()
{
InitializeComponent();
pubAltArray = new TextBox[10];
然后我使用以下代码以编程方式创建TextBox:
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;
}
}
我想要在每个TextBox的内容发生变化时运行一些例程:
private void doTheStuff(object sender, TextChangedEventArgs e)
{
...
}
所以我尝试在新TextBox的定义期间添加事件处理程序但是没有成功:
pubAlt.TextChanged += new System.EventHandler(doTheStuff());
或
pubAlt.TextChanged += RoutedEventHandler(calculateCorAlts());
对我有任何暗示吗?
答案 0 :(得分:1)
尝试:
pubAlt.TextChanged += new TextChangedEventHandler(doTheStuff);
或:
pubAlt.TextChanged += doTheStuff;
两条线都做同样的事情。第二行只是第一行的简写,因为它使代码更容易阅读。
答案 1 :(得分:0)
您正在使用()
调用该方法。将您的代码更改为:
pubAlt.TextChanged += new System.EventHandler((s,e) => doTheStuff());
pubAlt.TextChanged += RoutedEventHandler((s,e) =>calculateCorAlts());
您的方法与其要求的方式不符。