wpf中边界控制的奇怪行为

时间:2013-01-30 10:55:31

标签: c# wpf wpf-controls

我在usercontrol中添加了以下代码,因此我可以看到usercontrol本身的边框。但问题是当我将usercontrol添加到ManinWindow.xaml时,边框丢失了 只有标签显示。可能有什么问题?

<Border BorderBrush="Red" CornerRadius="10">            
  <Label  Content="Take Up"></Label>          
</Border>

非常感谢您的解决方案

1 个答案:

答案 0 :(得分:1)

您可能需要BorderThickness属性;

<Border BorderThickness="2" BorderBrush="Red" CornerRadius="10">            
  <Label  Content="Take Up"></Label>          
</Border>

For Instance