Jonatas Povoas
Jonatas Povoas

Reputation: 43

Creating a UWP solution in Visual Studio Code

I'm trying to create an UWP application in Visual Studio Code.

I want to create an app with a ribbon like interface (the interface used in Microsoft office), and since I this is my very first attempt to use VSCode I have no idea how to create the project. At the VSCode terminal help I saw a many different templates available to create projects, but I'm not sure which I should choose.

Upvotes: 4

Views: 6541

Answers (1)

Larry
Larry

Reputation: 652

If you're using VSCode and the dotnet CLI, it doesn't have any built in methods of creating a UWP project.

An alternative if you're purely focused on using a "Ribbon" design is the WinForms Ribbon project, which is FOSS, actively maintained and can be found here, with older detailed documentation on how to use it here.

Upvotes: 1

Related Questions