0

私はこのようなものを持っていることを考えています:

<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>

これは可能ですか?

4

1 に答える 1

0

別のグリッドでグリッドを管理しますか?

<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> 
于 2012-04-18T14:16:59.363 に答える