I am very new to WPF, and I have a very basic WPF question:
Suppose we have a custom dll with some business logic that fires events such as ModemIsConnected. On the UI side (.xaml) there is a label that changes its value to OK once that event is fired. I would like to offload the event handling portion (changing label's status and other minor UI tweaks) to a designer. Is it possible to handle events in xaml without creating code-behind?
Thanks!