how to add multiple line commenting in wpf xaml file?

.net, c#, wpf, xaml

Solution

To comment in Visual Studio

Select the lines,

CTRL+K +C

UNcomment

CTRL+K+U

Problem

``` <Grid Name="grid2" Grid.Row="1" Margin="10,5,10,10" TextBlock.Foreground="White"> <Grid.RowDefinitions> <RowDefinition Height="100" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> </Grid> ``` I want to comment the lines regarding grid2

Original source