Thomas Freudenberg

Confessions of a caffeine addict

Browse by Tags

All Tags » WPF (RSS)
Creating Dynamic Windows 7 Taskbar Overlay Icons, the MVVM Way
Since Windows 7 the icon of an application can get an overlay bitmap. You can use that to indicate some state of the application, or–like MetroTwit –to show the number of unread items. Overlay Icon in WPF In WPF, the API is pretty simple: <Window.TaskbarItemInfo>...
Binding WebBrowser content in WPF
When you’re using a WebBrowser control in your WPF application, you may have noticed that you can’t bind the control’s content. WebBrowser has no property to set its content but a method named NavigateToString . So when you’re following a strict MVVM...