在画布上查找控制位置

发布于 2024-09-11 04:52:47 字数 154 浏览 1 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(2

倦话 2024-09-18 04:52:47

以下是如何获取值的一些示例:

foreach(FrameworkElement fe in canvas.Children){

   // example 0
   double top=(double)fe.GetValue(Canvas.TopProperty);
   double left=(double)fe.GetValue(Canvas.LeftProperty);

   // example 1
   double top1=Canvas.GetTop(fe);
   double left1=Canvas.GetLeft(fe);

}

请参阅 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:

foreach(FrameworkElement fe in canvas.Children){

   // example 0
   double top=(double)fe.GetValue(Canvas.TopProperty);
   double left=(double)fe.GetValue(Canvas.LeftProperty);

   // example 1
   double top1=Canvas.GetTop(fe);
   double left1=Canvas.GetLeft(fe);

}

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

多像笑话 2024-09-18 04:52:47

优雅的解决方案

foreach (FrameworkElement fe in Canvas.Children)
         Thickness margin = fe.Margin;

MessageBox.Show("Left: " + margin.Left + "Top: " + margin.Top);

Elegant solution

foreach (FrameworkElement fe in Canvas.Children)
         Thickness margin = fe.Margin;

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