Answers for "wpf border"

0

wpf border

//If you just want an outer border, the easiest way is to put it in a Border control:
<Border BorderBrush="Black" BorderThickness="2">
    <Grid>
       <!-- Grid contents here -->
    </Grid>
</Border>
Posted by: Guest on November-15-2021

Browse Popular Code Answers by Language