When I set the Text property by binding to null value, the next change by binding is not taken into account.
the problem comes from _ignoreTextPropertyChange field in AutoCompleteBox.cs.
When the Text property is changed by code this field is incremented because a TextChanged is fired on the inner TextBox which decrements this counter.
But in case where the new value is null, the TextChanged is not fired and the counter will be decremented next time the value will be changed, but with take care this value.
Is it possible to fix this bug about this counter ?
Sorry for my bad english.
Thank you
Comments: ** Comment from web user: bleakcabal **
the problem comes from _ignoreTextPropertyChange field in AutoCompleteBox.cs.
When the Text property is changed by code this field is incremented because a TextChanged is fired on the inner TextBox which decrements this counter.
But in case where the new value is null, the TextChanged is not fired and the counter will be decremented next time the value will be changed, but with take care this value.
Is it possible to fix this bug about this counter ?
Sorry for my bad english.
Thank you
Comments: ** Comment from web user: bleakcabal **
I have the same issue with version v2.0.50727