WPF
Automated ClickOnce Deployment of a WPF Application using Appveyor Paid Members Public
This post covers the current deployment setup of CLAL(Command Line Application Launcher), a desktop application, that I am building. Since it is a WPF application, it supports ClickOnce Deployment that enables to create self-updating applications which can install with minimum interaction from the user. ClickOnce supports different deployment strategy
MVVM – Does it really matter? Paid Members Public
MVVM (Model-View-ViewModel), is a popular architectural pattern since WPF/Silverlight. Separation of concerns(UI/code), testability etc are some of the key things that motivates one to go via the MVVM route. There are innumerous articles out there, just like this one, that gets into the details of how and
WPF Expander trigger on IsExpanded to change the header Paid Members Public
Just a quick tip on how you could change the Expander header content when Expander is in expanded state.I have also modified the expander HeaderTemplate so that the text gets center aligned. <Expander Height="100" HorizontalAlignment="Left" Margin="129,192,0,0"
DataTemplate Vs Code Behind Paid Members Public
Most of the people switching to WPF,got to understand the fact the WPF tries to target one major problem of the technologies that existed before, which was tight coupling of the design and the behaviour.WPF has a ‘lookless control model’,and that simply means that the look and
Kick Start WPF Paid Members Public
Every time one of my friends asks,'Hey how to start off with WPF',I think of putting up a post,so that I could easily direct them and say,'Hey check out my post in my blog'.Maybe from the next time I would :) There
Deleting Multiple Selected Items in WPF Paid Members Public
Hi, Many a times while using listbox,listview etc there might be a need to delete the multiple selected items. This can be easily achieved by the following piece of code While ControlName.SelectedItems.Count > 0 ControlName.Items.Remove(ControlName.SelectedItem) End While Happy Coding :)
WPF Certification !!!!! Paid Members Public
After a long time after my first microsoft certification,70-536,.NET Framework - Application Development Foundation today i have taken the certification for WPF, Microsoft .NET Framework 3.5, Windows Presentation Foundation Application Development,70-502. This one is easy for anyone who has some hands on experience in WPF.One
SolidColorBrush List from Brushes Paid Members Public
Hi, Everybody will be using Brushes,which implements a set of predefined SolidColrBrush objects,to choose various colors. Sometimes you may want to get a list of all these brushes up in your application,so that the user can select the color of his/her choice. To get the list