1

我有一个箭头的图像,它跟随手指。当我抬起手指时,我想在箭头末尾的 TextBox 中选择一个单词。所以我有一个屏幕坐标

imgArrow_ManipulationCompleted(object sender, ManipulationCompletedEventArgs e)

事件并且必须开火

TextBox_Tap(object sender, System.Windows.Input.GestureEventArgs e)

在 TextBox 中获得光标的正确位置。

问题是如何TextBox_Tap()使用给定的坐标进行射击,因为我无法构建GestureEventArgs e自己。

谢谢!

4

1 回答 1

0

尝试这样做:

input.getWordUnderPosition(x, y);
于 2012-10-01T15:14:54.740 回答