I have a Grid with many TextBoxes and I want to call NotifyPropertyChanged()
method to update some other controls everytime one of these TextBox-es changed the value = lost the focus (I don't want to use PropertyChanged
as UpdateSourceTrigger
)
This is what I can do:
<Grid TextBoxBase.TextChanged="My_TextChanged" >
...
</Grid>
I need something like:
TextBoxBase.OnLostFocus