我创建了一个虚拟键盘,它在 TextBox 中工作正常。但是,只有当我使用鼠标更改光标位置时, PasswordBox 才会起作用。
我只想在 PasswordBox 中获取插入符号索引,以便我可以在正确的位置插入文本。
如果可以在 PasswordBox 中找到插入符索引,请告诉我。
答案 0 :(得分:1)
我将此方法用于我的VirtualKeyboard:
TextCompositionManager.StartComposition(new TextComposition(InputManager.Current, _PasswordBoxControl, "StringYouWantToInsert"));
文本插入到插入符号位置。