Hi @Amyco 35 , Welcome to Microsoft Q&A,
This is not a regular way to upgrade a project, so it may cause various unexpected events, and some may even fail to open the original project.
You can refer to Visual Studio 2022 Port, migrate, and upgrade projects to migrate the project.
Sometimes, a newer version of Visual Studio can open a project, but it must update or migrate the project in a way that might render it incompatible with previous versions. Visual Studio uses the following criteria to determine whether such migration is necessary:
Of course, your problem seems to be because in Visual Studio 2022 and .NET Framework 4.8.1, by default, the application enables DPI awareness, causing controls to scale proportionally on high-resolution screens.
If you need to disable DPI awareness behavior, you can ensure that the following settings exist or modify them in the app.manifest file of the application:
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">false</dpiAware>
However, in general, the conversion from the old version to the new version will not be 100% successful. You can fix this problem manually.
Best Regards,
Jiale
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.