代码段是首选.
例如,如果您使用Button和Label制作Windows窗体,则可以在构造函数中添加(在InitializeComponent()之后):
this.button1.Click += (o,e) => { this.label1.Text = "You clicked the button!"; };
这将导致标签在单击按钮时更改.