我已将viewbox作为主容器创建了usercontrol。 如果我将此usercontrol添加到窗口,它将放置它的所有区域。 如何设置控件的默认宽度和高度?
<UserControl>
...
<Viewbox>
<Grid Height="167" Width="178">
<ed:RegularPolygon Fill="#FFF4F4F5" InnerRadius="1" PointCount="3" Stroke="Black" RenderTransformOrigin="0.5,0.5" Margin="-39,52,69,52" >
<ed:RegularPolygon.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="90"/>
<TranslateTransform/>
</TransformGroup>
</ed:RegularPolygon.RenderTransform>
</ed:RegularPolygon>
</Grid>
</Viewbox>
</UserControl>
答案 0 :(得分:1)
有多种方法可以设置特定控件的尺寸。硬编码精确Width
和Height
属性是最不推荐的。除此之外,您可以尝试使用所有控件都具有的MinHeight
,MaxHeight
,MinWidth
和/或MaxWidth
属性。
另一种方法是使用父级Grid
的ColumnDefinitions
或WidthDefinitions
设置一些限制(如果控件位于其中)。