Currently, I have a base page that loads, and I need a way to get the width and height of the window, preferably in the constructor. The problem is that in the designer or before the page is fully loaded, I cannot get the width and height. After loading, I can simply use:
this.ActualWidth; this.ActualHeight;
Is there any window loading completion event that I can use, or any way to get the width and height at boot time?
source share