Visual Studio plug-in

Hi, please, make extension for Visual Studio 2019

What would that extension do? Are you using any other libraries that offer VS extensions as an example?

Just extension, where can create Juce dialogs, write control handlers, event handlers, etc like in Visual C#

What you’re looking for does not exist natively in C++, unlike in C# where the Microsoft toolchain allows to design your GUI this way.

The Projucer can kinda do that and allow you to design some components and it will generate some code for you from the design, and perhaps this is something you could use. However -this isn’t the common way to write C++ apps/plugins.

Usually we code the design, and perhaps load some attributes like positions/colours/images from a data file (XML, JSON, etc).

1 Like