Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我对按钮有此操作功能:
private: System::Void button1_Click(System.Object sender, System.EventArgs e) {}
我想知道谁会分配e他们sender的价值观?
e
sender
引发事件的代码必须设置发送者和事件参数。例如,如果有问题的按钮是 Winforms 元素,那么值将由 System.Windows.Forms 代码设置,您应该能够在 MSDN 文档中找到它的详细信息。
通常,按照惯例,发送者将是引发事件的对象实例。事件参数将包含与事件相关的任何其他信息。