如何编辑网格行以删除下划线
本文关键字:删除 下划线 网格 何编辑 编辑 | 更新日期: 2023-09-27 18:34:50
在此,"居民"带有下划线。 如何删除下划线?
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="31" />
</Grid.RowDefinitions>
<TextBlock Style="{StaticResource TextBoxTitleHeader}" Grid.Row="1">Residents</TextBlock>
<Grid Grid.Row="2" Grid.Column="0">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
下划线不是由于你显示的 XAML。 它可能在您正在使用的TextBoxTitleHeader
样式中定义。
您可以通过删除或更改该样式来删除它,即:
<TextBlock Grid.Row="1">Residents</TextBlock>