Skip to content

Commit a810a65

Browse files
authored
Merge pull request #52 from nabond251/feature/separate-event-name
Invoke Base TextChanged Event
2 parents e89d243 + 9166e32 commit a810a65

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/AutoCompleteEntry/AutoCompleteEntry.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,8 @@ public void OnTextChanged(string text, AutoCompleteEntryTextChangeReason reason)
158158
/// <inheritdoc/>
159159
protected override void OnTextChanged(string oldValue, string newValue)
160160
{
161+
base.OnTextChanged(oldValue, newValue);
162+
161163
if (!_suppressTextChangedEvent) //Ensure this property changed didn't get call because we were updating it from the native text property
162164
{
163165
TextChanged?.Invoke(this, new AutoCompleteEntryTextChangedEventArgs(AutoCompleteEntryTextChangeReason.ProgrammaticChange));

0 commit comments

Comments
 (0)