Hi,
I have a user control which displays the currently logged in user's name. I have bound a TextBlock in the control to the UserId property of a User obejct in my application.
The issue I have is that the User object my binding has as a source changes each time a new user logs in.
I can think of a solution where I fire an event when the User obejct changes and this is caught my by control which then reinitialise's the binding but this seems less than ideal.
Are there a solution to this issue, I feel it must be very common?
Cheers,
James