标签: c# wpf pixel
如何在c#中获得wpf xaml中定义的矩形尺寸?
答案 0 :(得分:1)
如果您的矩形没有明确的尺寸设置,您可以通过ActualWidth / Height获取其当前尺寸:
<Rectangle Name="rect" />
double width = rect.ActualWidth; double height = rect.ActualHeight;
如果这不是你想要的,你可以尝试写一个以上的句子。