dahall / AeroWizard

Library for easy creation of custom and Aero Wizards. Aero Wizard strictly follows Microsoft guidelines and uses Visual Styles to get visual theming.
MIT License
112 stars 32 forks source link

Still working for Visual Studio 2015? #67

Closed dahall closed 5 years ago

dahall commented 5 years ago

Hi, I used the wizard successfully on a previous occasion with Visual Studio 2013 Community Edition.

I am using VS2015 Community edition right now. The wizard package is installed, by I cannot find any way to use it in my project. I think it should be accessible form Project, add new item ... but ithe wizard is not shown there. Do I miss something or is there a compatibility issue?

Originally posted: 2015-12-30T09:01:25

dahall commented 5 years ago

Did you install using the VSIX package or some other way?

Originally posted: 2015-12-30T10:31:16

dahall commented 5 years ago

I used the Nuget installer, I believe this uses VSIX packages.

Originally posted: 2015-12-31T02:12:33

dahall commented 5 years ago

The NuGet installer just delivers the assemblies to the project. To get the Project Items, I would recommend going into VS, clicking menus "Tools | Extensions and Updates", selecting "Online | Visual Studio Gallery", and then searching for "wizard". The first item on the list is usually "Windows Forms Wizard Templates". This is the VSIX package for this library. Doing it this way will make sure you stay updated automatically. This will install 3 item templates for creating different types of wizard forms.

Originally posted: 2015-12-31T10:14:17

dahall commented 5 years ago

Thanks. This works fine! You make me very happy! It's a great component and easy to use.

Originally posted: 2016-01-01T11:06:11

dahall commented 5 years ago

dahall wrote:

The NuGet installer just delivers the assemblies to the project. To get the Project Items, I would recommend going into VS, clicking menus "Tools | Extensions and Updates", selecting "Online | Visual Studio Gallery", and then searching for "wizard". The first item on the list is usually "Windows Forms Wizard Templates". This is the VSIX package for this library. Doing it this way will make sure you stay updated automatically. This will install 3 item templates for creating different types of wizard forms.

I used NuGet in VS2010 and it seems to have installed the assemblies to my test-project. Is there a way to install the controls to my Toolbox for VS2010 (.Net4)? I'd really like to try this out, but manually executing the vsix says "The extension manifest is invalid."

Thanks.
-AJ

Originally posted: 2016-01-05T18:05:29

dahall commented 5 years ago

You can use the library itself in all version of VS since 2005 and it supports .Net 2, 3.5 and 4. The VSIX with the item templates only supports VS 2012 and later.

There are multiple sites that can tell you how to add controls to your toolbox from NuGet installed assemblies. You can do this and the follow the steps in the documentation to create a wizard form.

If you want the ready made forms that are in the VSIX, you can look in the source code area and you will find a TestAeroWizard project. In it are the 3 forms used to test those items delivered with the VSIX. Simply install the NuGet package and copy one of those files into your project and you should be ready to go.

Originally posted: 2016-01-06T15:13:50