You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
725 B
725 B
Create New Class Library Guides
Basic Dependencies
- Microsoft.Practices.Prism
- Microsoft.Practices.Prism.MefExtensions
- Framework Assemblies
- PresentationCore
- PresentationFramework
- WindowsBase
- Projects
- MitechLib.Infrastructure
Steps
- Add all the basic dependencies
- Create a module class with
IModuleinterface
using Microsoft.Practices.Prism.Modularity;
namespace MitechLib.Product.PackagePage
{
public class ProductPackagePage : IModule
{
public void Initialize()
{
}
}
}
- Create Views & ViewModels Folder
- Create desired View & ViewModel Tutorial