WindowsPhone 7.1 プログラムにトゥーグル スイッチを挿入しました。このコントロールにテーマ カラーを適用したいと思います (Windows Phone の「アラーム」プログラムのように)。
実際、私の toggleSwitch は次のようなものです:
そして私はこれをします(私のテーマのように):
これが私のXAMLコードです:
<toolkit:ToggleSwitch Margin="193,371,0,0" Name="toggleSwitch1" VerticalAlignment="Top" Width="190" Height="114" />
アイデアはありますか?私はいくつかのヒントを使い果たしましたが、変更はありません:(
どうもありがとう、
よろしくお願いします、
編集 :
私はこれを試しましたが、変化はありません
<toolkit:ToggleSwitch Margin="193,371,0,0" Name="toggleSwitch1" VerticalAlignment="Top" Width="190" Height="114" Header="{Binding Path=LocalisedResources.Show24HourText}">
<toolkit:ToggleSwitch.HeaderTemplate>
<DataTemplate>
<ContentControl Foreground="{StaticResource PhoneForegroundBrush}" Content="{Binding}" />
</DataTemplate>
</toolkit:ToggleSwitch.HeaderTemplate>
</toolkit:ToggleSwitch>