I built a windows application in C# that is very size specific. I hard coded the size of the form so that it could not be resized. The problem is when someone changes there windows settings to font size for example (125% or 150%) my application breaks and buttons get moved over, and things fall off of screen. The entire application is a mess.
Is there a way in C# to disable the custom font effects of windows and use the pre-set font I told it to use in my form. I want all windows custom features to be turned to default on my application.
Is this possible at all, like import a DLL and call a function or change my program.cs some how.
Don’t do that. Write your application so it adapts to the user’s selected font size.