I was trying to update my controls when the size of the form changed using SizeChanged
.
It worked perfectly, except when going full screen.
I s
I was able to receive SizeChanged
event on maximize:
private void window1_SizeChanged(object sender, SizeChangedEventArgs e)
{
var a = window1.ActualHeight;
var b = window1.ActualWidth;
var c = window1.Height;
var d = window1.Width;
}
And these are values for window Height
and Width
:
a = 838.4
b = 1550.4
c = 350.4
d = 524.8