Skip to content

Visual Studio C++/CLR Windows Form Application example.

Notifications You must be signed in to change notification settings

NulledPtr/WindowsFormCpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 

Repository files navigation

Making a C++/CLR Windows Form Application in Visual Studio

To install CLR, It can be found by configuring the Visual Studio Installer. You will also need .NET framework 4.7.2 what can be found below or you can retarget the solution via the project settings.

.NET Framework 4.7.2: https://dotnet.microsoft.com/en-us/download/dotnet-framework/thank-you/net472-developer-pack-offline-installer

C++ Windows forms. It focuses standard C++, not C++/CLI. The main difference between the example from this git and a C++ application is, that instead of using the console for user interaction -

cout << "Hello world" << endl;

you can use a Windows control, e.g. a TextBox

textBox1->AppendText("Hello World");

About

Visual Studio C++/CLR Windows Form Application example.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages