How to track the position of the window after it is moved #3815
-
QuestionI need to record the coordinates of a form without a frame after moving it using WindowDragArea, how to track the end of moving the form. |
Beta Was this translation helpful? Give feedback.
Answered by
ndonkoHenri
Aug 17, 2024
Replies: 1 comment 2 replies
-
I personally dont seem to understand the question. Can you reformulate? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Suggestion: listen to window events, precisely the
MOVED
event, which occurs after the window was moved. When it occurs read the window's position frompage.window
, through props liketop
,left
,right
andbottom
.Let me know if you don't fully understand this suggestion and eventually, if it worked.