-
I set Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
hez2010
Jun 4, 2021
Replies: 1 comment 1 reply
-
Solved with private void Window_PointerPressed(object sender, PointerPressedEventArgs args)
{
var pointer = args.GetCurrentPoint(this);
if (pointer.Position.Y < 20 && pointer.Pointer.Captured is Border)
{
BeginMoveDrag(args);
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
hez2010
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Solved with