Catching the close event on a c# form

后端 未结 3 1085
借酒劲吻你
借酒劲吻你 2021-01-21 20:55

Hey! I am not trying to push my luck here but I have another c# question. I have tried every possible event I found using google. Here is the code:

 private void         


        
3条回答
  •  梦毁少年i
    2021-01-21 21:52

    You might be missing actual subscription code, which is something along these lines:

    this.Closing += Form1_Closing;
    

    Instead, try overriding OnXXX methods - this is the preferred way of doing things.

提交回复
热议问题