Skip to main content

Posts

Showing posts from July, 2015

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...