WPF TextBox从鼠标指针获取并设置插入符位置 [英] WPF TextBox obtain and set caret position from mouse pointer

查看:382
本文介绍了WPF TextBox从鼠标指针获取并设置插入符位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我将鼠标悬停在TextBox上时,我试图根据鼠标坐标设置TextBox插入符号的位置. 我可以通过使用Mouse.GetPosition(this.MyTextBox)获得相对于TextBox的鼠标坐标,但是我需要帮助将这些坐标转换为插入符号位置. 任何帮助将不胜感激!

I am trying to set TextBox caret position according to the mouse coordinates when hovering over the TextBox. I can obtain the mouse coordinates relative to the TextBox by using Mouse.GetPosition(this.MyTextBox) but I need help translating those coordinates into the caret position. Any help would be greatly appreciated!

推荐答案

MyTextBox.CaptureMouse();
MyTextBox.CaretIndex = MyTextBox.GetCharacterIndexFromPoint(Mouse.GetPosition(MyTextBox), true);

这篇关于WPF TextBox从鼠标指针获取并设置插入符位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆