How can I change the appearance of the form according to the operating system?

0

When I develop a project in C # (Windows Form Application) the appearance of the application window (borders) is according to the OS in which I'm running the application (Windows XP, Vista, 7, 8, 10)!

WINDOWS XP

WINDOWS7

How would I run my program on my Windows 10 in Visual Studio and see how the program's borders would stay on Windows 7 for example?

    
asked by anonymous 10.04.2018 / 02:30

2 answers

3

There may be some tool, very likely to be online , but I do not know. Officer does not have anything even because it is complicated without the operating system helping.

Even though it's still complicated because you must be imagining that everyone uses the standard Windows theme, but many people do not use it, so you can not see all the possibilities. If your application depends on the theme to look good, there is probably something wrong with it.

Of course you can develop an application that does this in virtual machines and coordinate the presentation of the main themes. But if you do, you probably have a product at hand.

    
10.04.2018 / 03:05
2

I do not know this, what you can do to get around this problem is to remove the edges of your form and leave background images, that is, you will create the image of your screen and set it as background-image. p>     

10.04.2018 / 18:09