Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void Navigate(object pageType)

private const string _gridShorthandSyntaxXamlUsage = """
<Grid RowDefinitions="Auto,Auto,Auto" ColumnDefinitions="Auto 80 *" HorizontalAlignment="Left">
<TextBlock Grid.Row="0" Grid.Column="0" FontWeight="Bold" Margin="0 0 10 0">Sl. No.</TextBlock>
<TextBlock Grid.Row="0" Grid.Column="0" FontWeight="Bold" Margin="0 0 10 0" AutomationProperties.Name="Serial Number">Sl. No.</TextBlock>
<TextBlock Grid.Row="0" Grid.Column="1" FontWeight="Bold">Name</TextBlock>
<TextBlock Grid.Row="0" Grid.Column="2" FontWeight="Bold">Description</TextBlock>
<TextBlock Grid.Row="1" Grid.Column="0">1</TextBlock>
Expand Down
2 changes: 1 addition & 1 deletion Sample Applications/WPFGallery/Views/WhatsNewPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
HeaderText="Grid Shorthand Syntax Sample"
XamlCode="{Binding ViewModel.GridShorthandSyntaxXamlCode}">
<Grid RowDefinitions="Auto,Auto,Auto" ColumnDefinitions="Auto 80 *" HorizontalAlignment="Left">
<TextBlock Grid.Row="0" Grid.Column="0" FontWeight="Bold" Margin="0 0 10 0">Sl. No.</TextBlock>
<TextBlock Grid.Row="0" Grid.Column="0" FontWeight="Bold" Margin="0 0 10 0" AutomationProperties.Name="Serial Number">Sl. No.</TextBlock>
<TextBlock Grid.Row="0" Grid.Column="1" FontWeight="Bold">Name</TextBlock>
<TextBlock Grid.Row="0" Grid.Column="2" FontWeight="Bold">Description</TextBlock>
<TextBlock Grid.Row="1" Grid.Column="0">1</TextBlock>
Expand Down
Loading