如何在运行时确定 WPF TreeViewItem 中文本的宽度?
如何在运行时确定 WPF TreeViewItem 中文本的宽度?
我需要计算偏移量,以便可以从一个叶子到另一个 TreeView 的叶子绘制一条线。 所有“width”属性返回的大小都比节点实际文本占用的空间大得多。 这一定是可能的,因为“选择”功能不会突出显示整行。 我正在用 WPF 和 Silverlight 编写客户端。
How do you determine the width of the text in a WPF TreeViewItem at run time?
I need to calculate an offset so I can draw a line from one leaf to the leaf of a different TreeView. All the 'width' properties return a size that is way bigger than the space taken up by the actual text of the node. It must be possible because the Select feature doesn't highlight the entire row. I'm writing the client in WPF and Silverlight.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您对文本或标签不是很具体,所以我假设您正在了解 .Net Framework 的 TreeViewItem。
可能有更简单的方法,但一种可能是使用 Graphics.MeasureString 方法。 它为您提供使用特定字体绘制的文本的大小(以像素为单位)。
You weren't very specific on the text or the tags, so I'm assuming you're taking about the .Net Framework's TreeViewItem.
There might be easier ways, but one possibility is to use the Graphics.MeasureString method. It gives you the size in pixels of a text when drawn using a specific font.
@mrphil:甜蜜的流产胎儿,太可怕了
@mrphil: Sweet aborted fetus, that's scary
我有两个解决方案:
A)使用视觉树
B)如果你不想使用视觉树
I have two solutions:
A) Uses the visual tree
B) If you don't want to use the visual tree