Decided to start working on a personal project creating a C++ program with a GUI. The idea that I had in mind was to practice what I'm learning in college by implementing it on a personal project.
After debugging it I noticed the size was quite off. For some reason, everything it scaling downwards when debugged. I'm guessing this has to do with Visual Studio not recognising my current screen resolution or conflict with my theme (which is an ordinary Windows 10 theme).
Please let me know if there's possibly a step I missed while implementing a GUI with C++ in Visual Studio, or if this is a known issue.
Thank you for your time and support through this early stages in my learning process.
#include "MainForm.h"
using namespace System;
using namespace System::Windows::Forms;
[STAThread]
void Main(array<String^>^ args)
{
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
cppGUI::MainForm form;
Application::Run(%form);
}