Users Pricing

forum

Home Forums WPF window reports old left property after DragMove – MindStick

WPF window reports old left property after DragMove

Anonymous User 3319 19 Aug 2014

I have this issue, after calling DragMove(), the window reports its old Left property as if DragMove did not change it at all.

so lets say the window's left is currently 100 pixels, i move the window using DragMove():

private void Window_MouseDown(object sender, MouseButtonEventArgs e)

{

    if (e.LeftButton == MouseButtonState.Pressed)

    {

        DragMove();

    }

}

after which i click a button an show the new Left position of the window:

private void SomeButton_Click(object sender, RoutedEventArgs e)

{

        MessageBox.Show(Left.ToString());

}

however, the Message box still shows '100' as if the window didnt move at all although it did...

what am i missing?


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md