Skip to main content

Posts

Showing posts from 2015
Basic Prism Application for Beginners.  Part2 (https://msdn.microsoft.com/en-us/library/gg406140.aspx) Continue from the Part 1. Lets Start Adding the module to our Report Designer Solution (1) Add a WPF User Control Library as shown below. Name it RibbonBarModule (2) Remove UserControl1.xaml and Add three Folders Views, ViewModels and  Models. (3)The Solution Explorer will like this (4) Right Click on Project and Select Manage NuGet Package and Prism  as given below (5) Install UnityExtensions by using command  install-package prism.unityextensions  Make sure that the project is changed in the Package Manager Console (6) Add New UserControl in Views Folder and Name it RibbonBarView (7) Now Add RibbonBarViewModel in ViewModels Folder. Add RibbonBarModel in Models Folder. (8) Add Interface IRibbonBarView in Views, IRibbonBarViewModel in ViewModels and IRibbonBarModel in IRibbonBarModel in Models folder. (9) inheri...

Basic Prism Application for Beginners. (https://msdn.microsoft.com/en-us/library/gg406140.aspx)

The following series of tutorials will help the C# WPF Developer in understanding the PRISM framework. We will create Step by Step a Report Designer Software (Basic) which will allow the user to design a simple report template. The purpose behind choosing Report Designer as subject is that we will create different modules which are easily understandable, lets start :- Note: - Visual Studio 2012 is used for creating the application. Use this extension for Package Manager console Download here https://visualstudiogallery.msdn.microsoft.com/27077b70-9dad-4c64-adcf-c7cf6bc9970c Task 1 : -   Let's create a Simple WPF application and Play with Prism Package, (1) Create a Simple WPF Application Name it ReportDesigner. The Solution will look like below (2) Open the MainWindow.xaml.cs. Rename the "MainWindow" Class to "Shell" by using Refactor. (3) Rename the MainWindow.xaml in solution explorer  (4) Open App.xaml and change th...