私はこのようなものを持っていることを考えています:
<Grid> <-- opacity is .5
<Grid></Grid> <-- opacity is .9 (of total opacity, not relative to parent)
<Grid></Grid> <-- opacity is .9
<Grid></Grid> <-- opacity is .9
</Grid>
これは可能ですか?
別のグリッドでグリッドを管理しますか?
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid Grid.ColumnSpan="3"><Grid> <-- opacity is .5
<Grid Grid.Column="0"></Grid> <-- opacity is .9
<Grid Grid.Column="1"></Grid> <-- opacity is .9
<Grid Grid.Column="2"></Grid> <-- opacity is .9
</Grid>