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
Asked
Active
Viewed 137 times
0
-
2You can't make a fixed-sized window, you need to dynamically layout the UI depending on dimensions. – Some programmer dude Jul 23 '13 at 10:55
-
and how i can make that? – WopsS Jul 23 '13 at 11:06
-
It was/is relatively difficult in Windows API. Then, MFC made these things simpler. I guess, it is peace of cake in Win Forms - just search for corresponding MSDN sample. – SChepurin Jul 23 '13 at 11:36
1 Answers
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