System.Windows.Controls.AutoCompleteBox.UpdateTextValue C# (CSharp) Méthode

UpdateTextValue() private méthode

Updates both the text box value and underlying text dependency property value if and when they change. Automatically fires the text changed events when there is a change.
private UpdateTextValue ( string value ) : void
value string The new string value.
Résultat void
        private void UpdateTextValue(string value)
        {
            // ReSharper disable once IntroduceOptionalParameters.Local
            UpdateTextValue(value, null);
        }

Same methods

AutoCompleteBox::UpdateTextValue ( string value, bool userInitiated ) : void