我在 xaml 中定义了这样的网格:
<Grid Name="grdMoney" HorizontalAlignment="Center" Margin="20">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
... Content, many Textboxes in each row
</Grid>
现在我只想通过更改该行的背景来突出显示某行。但我不知道如何从代码中的网格中获取准确的行。我认为这很容易,但我在谷歌上搜索了最后 15 分钟却找不到它。也许有什么grdMoney.Childer[number_of_row]
?感谢帮助