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>...
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...