I want to get the focused window so I can resize it… how can I do it?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the GetForegroundWindow Win32 API to get the window handle.
Then use the MoveWindow (or SetWindowPos if you prefer) win32 API to resize the window.
Working with the Win32 API can be done directly with ctypes and working with the dlls or by using the pywin32 project.
Edit: Sure here is an example (Make sure you have pywin32 installed):