Sequence of constructing an object

For a class, what is the sequence of

  • constructor being called
  • setting of properties to their default values
  • calling the Open event

TIA

For a plain class:
Inside the Constructor, the properties already have their default values.
There is no Open event unless you define one.

For a Control, there is an Open event, and you should use that instead of Constructor when placing it on a Window.

Open will come last.