0

I have a little problem in C + + Windows Forms. When I made that small little program I did at 1280x1024 resolution, my computer see perfectly. When I installed on my laptop that has 1600x900 resolution not see the buttons down, meaning the option and exit button. How can I do to show well on all screens, eg 1280x1024, 1600x900, 1280x720, etc.. I can say using Visual Studio 2012

WopsS
  • 3
  • 3

1 Answers1

0

Instead of Windows Forms, you should use WPF, it solve that kind of issue. Look at Resolution independent or monitor size independent WPF apps.

You can with VS'12 create WPF UI with C++/CLI it can provide an easy integration of your C++ native code.

Community
  • 1
  • 1
alexbuisson
  • 7,699
  • 3
  • 31
  • 44