私はWindows Phone 8開発の初心者で、タブシステムを作成する必要があります(AndroidのslideDrawerに少し似ています)。私は自分自身を説明します、私は次のようなxamlインターフェースを実装しました:
http://img15.hostingpics.net/pics/974529onglet.png
このインターフェースのコード:
<StackPanel VerticalAlignment="top" Orientation="Horizontal" Height="402" Width="480">
<StackPanel Width="161" Margin="0,10,0,0" >
<StackPanel Height="50" Background="DarkCyan">
<TextBlock Height="50" Text="Qualité orale" Foreground="White" />
</StackPanel>
<StackPanel Height="50" >
<TextBlock Text="Compréhension" Foreground="White" />
</StackPanel>
<StackPanel Height="50">
<TextBlock Text="Général" Foreground="White"/>
</StackPanel>
<StackPanel Height="50">
<TextBlock Text="Fichiers relatifs" Foreground="White"/>
</StackPanel>
<StackPanel Height="50">
<TextBlock Text="Le conférencier" Foreground="White"/>
</StackPanel>
<StackPanel Height="50">
<TextBlock Text="Questions" Foreground="White"/>
</StackPanel>
</StackPanel>
ここでやりたいことは、ユーザーがスタックパネルに触れると、スタックパネルの色が変わり、右側の灰色のコンテンツも変わることです。
私の問題を解決するのを手伝ってもらえますか?
前もって感謝します