2012-03-28 16 views

Respuesta

4

¿Quizás?

<DockPanel LastChildFill="True"> 
     <Rectangle Fill="Red" DockPanel.Dock="Top" Height="2"/> 
     <Rectangle Fill="Yellow" DockPanel.Dock="Left" Width="2"/> 
     <Rectangle Fill="Green" DockPanel.Dock="Right" Width="2"/> 
     <Rectangle Fill="Blue" DockPanel.Dock="Bottom" Height="2"/> 
     <Rectangle Fill="Wheat"/> 
    </DockPanel> 
4

Un poco raro, pero funciona.

<Grid> 
    <Border BorderThickness="1,0,0,0" BorderBrush="Blue"/> 
    <Border BorderThickness="0,2,0,0" BorderBrush="Red"/> 
    <Border BorderThickness="0,0,3,0" BorderBrush="Green"/> 
    <Border BorderThickness="0,0,0,4" BorderBrush="Orange"/> 
</Grid> 

Probablemente es mejor crear su propio Decorator.

0

Hay una manera hacky que el uso de cuatro Frontera https://stackoverflow.com/a/1797045/5229294

<Border BorderThickness="0,0,0,10" BorderBrush="Green"> 
    <Border BorderThickness="0,0,10,0" BorderBrush="Blue"> 
     <Grid> 
      <Button>Hello</Button> 
     </Grid> 
    </Border> 
</Border> 
Cuestiones relacionadas