0

私はいくつかの Windows Phone 8 アプリを開発していますが、次の疑問が生じました。

ゲーム テーブルのような 8x8 グリッドがあり、グリッドのすべてのセルに四角形があります。エイブリー セルには、カード ゲームを含むと想定される四角形があります。 ManipulationDeltaEventArgs によるカード形状ですが、その形状を次のグリッド セルに並べ替えることができません

myShape.Grid.Row++;のようなものになると思いました。しかし、私の形状属性に親グリッドがありません。助けてください。

私のXAMLファイルは次のようになります

<Grid x:Name="MyGrid">

    <Grid.RowDefinitions>
        <RowDefinition/>
        <RowDefinition/>
    </Grid.RowDefinitions>

    <Grid.ColumnDefinitions>
        <ColumnDefinition/>
        <ColumnDefinition/>
    </Grid.ColumnDefinitions>

    <Rectangle Fill="Black" Grid.Row="0" Grid.Column="0"/>

    <!--I want to move this ellipse to the next row and collumn by drag and drop
    and I already have that code, I just want to move it and stretch it to the 
    rectangle it is dropped
    <Ellipse x:Name="e10" Fill="White" Grid.Row="0" Grid.Column="0" Width="45" Heigth="45" ManipulationCompleted="e10_ManipulationCompleted_1"/>
</Grid>

よろしく!

4

1 に答える 1