最佳答案
这种方法效果很好:
protected void txtTest_Load(object sender, EventArgs e)
{
if (sender is TextBox) {...}
}
有没有一种方法来检查发件人是否不是一个文本框,某种相当于!= “是”的意思?
请不要建议将逻辑移动到 ELSE {} :)