C# application looks different on 2 different machines with the sameresolution

  • Thread starter Thread starter peetersb
  • Start date Start date
P

peetersb

Hello,

I've developed a C# windows application in full screen mode. No
borderstyle and the size of the main form is 1680 * 1050
The resolution on both pc's is 1680 * 1050.
On my developement machine it look ok.
See pic http://www.bapetc.be/good.JPG
But when I run the same application on a other pc with the same
resolution (1680 * 1050) it looks very bad.
see picture http://www.bapetc.be/bad.JPG

I don't know the reason for that.

Thanks!
 
Hi,

It might be a number of reasons, like the Font Size and/or the Windows Style
 
Windows style? The difference is big, not?

Both have a resolution of 1680 * 1024...
How can I make this pc independent?
 
Hello,

I've developed a C# windows application in full screen mode. No
borderstyle and the size of the main form is 1680 * 1050
The resolution on both pc's is 1680 * 1050.
On my developement machine it look ok.
See pic http://www.bapetc.be/good.JPG
But when I run the same application on a other pc with the same
resolution (1680 * 1050) it looks very bad.
see picture http://www.bapetc.be/bad.JPG

I don't know the reason for that.

You've got DPI-dependent scaling turned on. Specify font sizes in pixels
instead of points, and turn off scaling and everything should be ok.
 
Thanks! Is this a windows setting or a setting in my application?

DPI is a Windows setting, but you shouldn't require your users to change
their DPI just to run your app.

So change the way your app selects fonts to use pixels instead of DPI, if
you want it always to take up the same resolution screen.
 
DPI is a Windows setting, but you shouldn't require your users to change
their DPI just to run your app.

So change the way your app selects fonts to use pixels instead of DPI, if
you want it always to take up the same resolution screen.

Thanks! In visual studio? Do you know where to set setting. I'm
looking for more than a hour... Sorry...
 
Back
Top