vote up 2 vote down star

The width property of the screen doesn't seem to update to the fully maximized width when maximizing a window. If I resize it everything works fine, but not when maximizing.

The code I have is as follows:

        private void Window_SizeChanged(object sender, SizeChangedEventArgs e)
    {
        UpdateColumns();
    }

    private void button1_Click(object sender, RoutedEventArgs e)
    {
        UpdateColumns();
    }

    private void UpdateColumns()
    {
        ColumnCount = Math.Round(Width/150);
        statusBarItemColumnCount.Content = ColumnCount;
        button1.Content = ColumnCount + " " + Width;
    }

    private void Window_StateChanged(object sender, EventArgs e)
    {
        UpdateColumns();
    }
flag

2 Answers

vote up 4 vote down check

Take a look at ActualWidth, rather than "Width".

link|flag
Thank you! This also works for ActualHeight. – Richard Morgan Jun 9 at 15:53
vote up 1 vote down

try using ActualWidth instead of Width, that should fix it

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.