Reputation: 43
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
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