将标签放置在图像顶部
我在 WPF 中使用了图像。在图像顶部我放置了标签。调整窗口大小时,图像也会调整大小,这是可以的。然而,标签也应该重新定位。因此它们在图像顶部保持相同的相对位置。目前我正在使用画布。我为标签设置了 Canvas.Top 和 Canvas.Left 属性。调整大小时如何修复标签的位置。
I used a image in WPF. On top of the image I positioned labels. When resizing my window the image also resizes, which is ok. However the labels should also reposition. So they keep on the same relative position on top of the image. Currently I'm using a canvas. I set the Canvas.Top and Canvas.Left properties for the labels. How can I fix the positioning of the labels when resizing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
Viewbox
并将您的Canvas
放入ViewBox
内。Use a
Viewbox
and place yourCanvas
inside theViewBox
.如果您希望将标签始终放在图像顶部,只需使用 StackPanel 即可。
If you want put the label always on top of the image, simply use
StackPanel
.