why in this code "e.Cancel = true; " worked,but " new CancelEventArgs().Cancel = true;" Do not worked?

    private void Form1_FormClosing(object sender, FormClosingEventArgs e)
    {
        e.Cancel = true;                          //

        new CancelEventArgs().Cancel = true;       //
    }
link|improve this question

74% accept rate
2  
Because one is the correct way to cancel a formclosing event, and the other is total junk. – Jamiec Feb 28 '11 at 13:29
3  
@Jamiec: "Total junk" isn't very descriptive and therefore not very helpful. Without an understanding of object instantiation, it's very easy to see how one might be confused here. I agree the explanation is simple, but it's not as simple as "total junk". – Cody Gray Feb 28 '11 at 13:44
feedback

2 Answers

up vote 2 down vote accepted

The event is raised by the Winforms plumbing code. The only way it can see that the custom event handler wants to alter the default behavior is through the e object. Creating a new CancelEventArgs object has no side-effects that the plumbing can detect.

There's something else wrong, events are raised for the benefit of external code, letting it know what's going on and giving it an option to alter behavior. There is no external code here, the event handler is actually part of the same class that raises the event. In other words, the form is listening to its own events. There's a much better way to deal with that, you override the method that raises the event. Like this:

    protected override void OnFormClosing(FormClosingEventArgs e) {
        e.Cancel = true;
        base.OnFormClosing(e);
    }

Now external code can override the default behavior, events are raised after the OnXxxx method runs. And you have a choice, if you do not want the external code to override the behavior, simply swap the two statements.

link|improve this answer
feedback

What do you expect new CancelEventArgs().Cancel = true; followed by a closing brace to do? You are creating a new instance of the CancelEventArgs class, setting a value on it, and then just throw away the result of all that hard work.

That line of code most likely works exactly as it is supposed to.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.