WPF

Automated ClickOnce Deployment of a WPF Application using Appveyor 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Tools

MVVM – Does it really matter? 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Dotnet

WPF Expander trigger on IsExpanded to change the header 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"

Rahul Pulikkot Nath
Rahul Pulikkot Nath
WPF

DataTemplate Vs Code Behind 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
WPF

Kick Start WPF 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
WPF

Deleting Multiple Selected Items in WPF 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 &gt; 0  ControlName.Items.Remove(ControlName.SelectedItem) End While Happy Coding :)

Rahul Pulikkot Nath
Rahul Pulikkot Nath
WPF

WPF Certification !!!!! 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
WPF

SolidColorBrush List from Brushes 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
WPF