获取 WPF Richtextbox 中 TextPointer 的 XY 坐标

发布于 2024-10-21 09:22:22 字数 57 浏览 1 评论 0原文

我想知道是否可以在 WPF Richtextbox 中获取 TextPointer 的 XY 坐标。

I would like to know if is possible to get XY coordinates of TextPointer within WPF Richtextbox.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怕倦 2024-10-28 09:22:22

您可以使用 Mouse.GetPosition(MyRichTextBox) 它将返回 RichTextBox 中鼠标的 X,Y 坐标

这是我用来验证其正确性的一个简单示例:

<StackPanel>
    <RichTextBox x:Name="Test" Height="100" Width="100" MouseMove="Test_MouseMove"  />
    <Label x:Name="Test2" Content="{Binding }" />
</StackPanel>

代码隐藏:

private void Test_MouseMove(object sender, MouseEventArgs e)
{
    this.Test2.DataContext = Mouse.GetPosition(this.Test);
}

编辑

没有意识到您想要获取插入符位置而不是鼠标位置。使用 myRichTextBox.CaretPosition.GetCharacterRect(LogicalDirection.Forward) 获取插入符的 X,Y 坐标

You can use Mouse.GetPosition(MyRichTextBox) which will return you the X,Y coordinates of the Mouse within the RichTextBox

Here's a simple example that I used to verify this was correct:

<StackPanel>
    <RichTextBox x:Name="Test" Height="100" Width="100" MouseMove="Test_MouseMove"  />
    <Label x:Name="Test2" Content="{Binding }" />
</StackPanel>

Code Behind:

private void Test_MouseMove(object sender, MouseEventArgs e)
{
    this.Test2.DataContext = Mouse.GetPosition(this.Test);
}

EDIT

Didn't realize you wanted to get caret position instead of mouse position. Use myRichTextBox.CaretPosition.GetCharacterRect(LogicalDirection.Forward) to get the X,Y coordinates of the caret

遥远的她 2024-10-28 09:22:22
Rect Example = myRichTextBox.CaretPosition.GetCharacterRect(LogicalDirection.Forward)

这将给出插入位置的 X,Y 坐标

Rect Example = myRichTextBox.CaretPosition.GetCharacterRect(LogicalDirection.Forward)

This will give the X,Y coordinates of the carete position

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文