This commit is contained in:
Muhammad Azeez 2019-02-22 20:56:18 +03:00
Родитель e5f97d6ffd
Коммит 1045b730b6
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -412,8 +412,7 @@ namespace Microsoft.Toolkit.Uwp.UI.Extensions
}
}
var text = new string(textArray);
textbox.Text = text;
textbox.Text = new string(textArray);
textbox.SetValue(OldTextProperty, textbox.Text);
textbox.SelectionStart = isDeleteOrBackspace ? newSelectionIndex : GetSelectionStart(mask, newSelectionIndex, representationDictionary, escape);
}