从c#你怎么得到wpf矩形像素数?

时间:2011-05-01 13:27:33

标签: c# wpf pixel

如何在c#中获得wpf xaml中定义的矩形尺寸?

1 个答案:

答案 0 :(得分:1)

如果您的矩形没有明确的尺寸设置,您可以通过ActualWidth / Height获取其当前尺寸:

<Rectangle Name="rect" />
double width = rect.ActualWidth;
double height = rect.ActualHeight;

如果这不是你想要的,你可以尝试写一个以上的句子。