How do i put a border on my grid in WPF?
- by Jason94
How do i put a border on my grid in C#/WPF?
This is what i would like it to be, but puts a border around the whole thing instead of the grid control i put in my application.
<Grid>
<Border BorderBrush="Black" BorderThickness="2">
<Grid Height="166" HorizontalAlignment="Left" Margin="12,12,0,0" Name="grid1" VerticalAlignment="Top" Width="479" Background="#FFF2F2F2" />
</Border>
... and so on ...