My Scenario is, upon opening application, I read lots of data from file (using XMLSerializer
) and put it into ObservableCollection<MyClass>
. Using Bindings, I present data to users. When they change data in a field, proper data in collection is updated, but I don't want that data to be saved to file upon LostFocus
. I have a button 'SAVE'.
I don't want to use UpdateSOurceTrigger = PropertyChanged
, I want to keep LostFocus
. The problem is, when user enters data to a TextBox
and presses Save button, TextBox
does not loses focus, meaning data is not propagated to collection and is not saved. Below is my solution that works, yet, my question is, Is it a proper way of doing, or is there other, better way?
The code I added to Save button, before saving collection:
IInputElement focusedElement = Keyboard.FocusedElement;
if (focusedElement is TextBox)
{
BindingExpression myBinding = BindingOperations.GetBindingExpression((TextBox)focusedElement, TextBox.TextProperty);
myBinding.UpdateSource();
}
Here is a small example of your scenario:
So what exactly is going on here:
As you see, the
TextBox
is there and itsUpdateSourceTrigger
is set toLostFocus
.When I modify the value there and click Save button, I am able to see what happens, with a break point in the Save method and the value is updated, because when you click the button, the
TextBox
loses the focus.Anyway i wanted to write this to you because there could be something more.
Have a look at
IEditableObject
interface :That's about it.