在画布上查找控制位置
我有一个 Canvas
,其中包含一些 Textblocks
,我需要找到在 XAML 文档中分配的左上角点。我怎样才能获得这两个属性?
当我循环浏览 Canvas
上的框架元素时,我似乎找不到列出的属性。
I have a Canvas
which contains a few Textblocks
and I need to find the top and left corner points that were assigned in the XAML Document. How can I get those two properties?
When I loop through the Framework Elements on the Canvas
I can't seem to find those to properties listed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是如何获取值的一些示例:
请参阅 http://msdn.microsoft.com /en-us/library/ms749011.aspx 和
http://msdn.microsoft.com/en -us/library/system.windows.controls.canvas.top.aspx
欲了解更多信息
Here some examples how to get the values:
See http://msdn.microsoft.com/en-us/library/ms749011.aspx and
http://msdn.microsoft.com/en-us/library/system.windows.controls.canvas.top.aspx
for more information
优雅的解决方案
Elegant solution