Event Importer for Google calendar
I have released a new product: Event Importer for Google calendar. It allows importing iCalendar files (.ics), downloaded via browser quickly and …
SVN for Visual Studio .NET
Looking for a way to integrate Subversion with Visual Studio .NET 2005 I came across AnkhSVN - an open source VS.NET plugin which does exactly that. …
WPF DataGrid row validation
WPF is a very powerful framework for GUI development. Among other things, it contains a unified approach to user input validation. Adding validation …
Opening new e-mail form of the default mail client in a WPF / WinForms application
Sometimes, while writing a WPF or WinForms GUI application, you might need to allow the user to send a pre-populated e-mail from her machine. A …
Use system icons in WPF
Sometimes you would like to use a standard Windows system icon, such as error, warning, question etc. in your WPF program. The main reason is usually …
Safe implementation of INotifyPropertyChanged interface
With arrival of WPF the usage of
INotifyPropertyChangedinterface has expanded dramatically. The most annoying and …