About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (20)
- Development (208)
- Security (17)
- Test (32)
- Tooling (166)
- Uncategorized (168)
Most used tags
Tag Archives: WPF
WPF Toolkit DateTimePicker customisation of header
In my previous post WPF Toolkit PropertyGrid direct update I’ve written about getting the Property Grid from the WPF toolkit. Now I want to tell you about how I got the DateTimePicker to behave my way. First of all the DateTimePicker is well documented. It … Continue reading
WPF Toolkit PropertyGrid direct update
For the visuals in our WPF project we use the WPF toolkit. An awesome library that offers a lot of controls for free (Community Edition) and even more controls in the paid editions. When editing a string property in the PropertyGrid, we noticed some strange … Continue reading
Allow only release build to be published
We have a WPF application that we distribute with click-once deployment. The update feature is exactly what we need for our product. Getting the new build from Development into Production is easy, just publish. The problem is that we only … Continue reading
MVVM light first look
For a side project I’m using WPF. This is where the company gets a product it needs and I learn something new. Since I’ve been mostly creating back-end and web based systems, my WPF knowledge is only theoretical. Time for … Continue reading
WPF localization
To repro a bug I’ve created a simple WPF application that displays two labels bound to the same DateTime object. The bottom one is converted to a string using a IValueConverter. Both should be formatted the same but aren’t. By … Continue reading