Just wondering whats the big difference between Form.Closed and Form.FormClosed event in the order of events of Windows Application. I’ve read it in MSDN documentation but still couldn’t find anything much different from one another. Please explain.
Just wondering whats the big difference between Form.Closed and Form.FormClosed event in the order
Share
As MSDN says:
I don’t think you should even consider using this event. It’s deprecated and hidden but it’s there only for compatibility with old source code.
It has the same meaning of the
FormClosedevent but with one (not so much) subtle difference, as you can see on MSDN theClosedevent isn’t raised when application exists because of a call toApplication.Exit()but theFormClosedis.This behavior is also documented in the link above: