Tagged Questions

1
vote
3answers
1k views

How do EventArgs Cancel work in the FormClosing Event?

How does the e.Cancel event work in the FormClosing event on a WinForm? I know you set it to True to cancel the closing, but at what point does the form process this? Is there a secondary action taken ...
0
votes
3answers
183 views

How to check for “method group” via “sender” object?

Imagine a method like this ( in Win Forms): //First method private void buttonStart_Click(object sender, EventArgs e) { //I call another method here this.GetData(sender, null) } ...