How to create a simple GUI in C++ | Creating a simple GUI calculator

preview_player
Показать описание
In this video we learn how to create a simple GUI calculator using C++ in MS visual Studio 2012.
---------------------------------------------------------------------------------------------------------------------------
CODE IN DESCRIPTION:
using namespace System;
using namespace System::Windows::Forms;
[STAThread]

void main()
{
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
Project1::MyForm form;
Application::Run(%form);
}

------------------------------------------------------------------------------------------------------------------------------------------------------------------
MY PC Specs:
Intel core i5 10th Gen
8gb ram
2GB graphics card NVidia
Microsoft Visual Studio 2012
---------------------------------------------------------------------------------------------------------------------------
Check out my most viewed video:

For any query feel free to email me at following:
Рекомендации по теме
Комментарии
Автор

using namespace System;
using namespace System::Windows::Forms;
[STAThread]

void main()
{


Project1::MyForm form;
Application::Run(%form);
}

electricalengineeringtutor