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

Create New Class Library Guides

Basic Dependencies

  • Microsoft.Practices.Prism
  • Microsoft.Practices.Prism.MefExtensions
  • Framework Assemblies
    • PresentationCore
    • PresentationFramework
    • WindowsBase
  • Projects
    • MitechLib.Infrastructure

00-class-library

Steps

  1. Add all the basic dependencies
  2. Create a module class with IModule interface
using Microsoft.Practices.Prism.Modularity;

namespace MitechLib.Product.PackagePage
{
    public class ProductPackagePage : IModule
    {
        public void Initialize()
        {
            
        }
    }
}
  1. Create Views & ViewModels Folder
  2. Create desired View & ViewModel Tutorial