Thursday, February 26, 2015

MethMvvm Visual Studio extention for C Sharp developers

meth - public method methp - private method propmvvm - mvvm property  Features & Benefits This will enable you to create methods in C# easily with double tap. And also enabled to crate MVVM properties easily. to do thet you have to create PropertyChange event . as follows,                                   public event PropertyChangedEventHandler PropertyChanged; ...

Friday, February 6, 2015

Prism MVVM pattern with Applcaition development

Prism is one of the design patterns which defined by Microsoft Patterns and Practices team for building composite Applications in C# , XAML (WPF,Store Applications etc ) . Why MVVM is not enough ? When we creating application with MVVM there is few questions and practices we need to figure out.  Should I use Prism to provide support for MVVM? Should I use a dependency injection container? Which dependency injection container should I use? When...

Tuesday, February 3, 2015

Tips to build Real time Applications (SignalR)

What is real time ? People who use the applications they need to see the actions one it happens . No delays or refreshing even it is desktop application, App , web or some other application. How its possible ? There is few options that developer can looking at. 1. Running background thread 2. Use SignalR 1st option that I describe here is not the best option in most of the times. Running background thread all times is resource consuming and...