2017-10-05 16 views

答えて

1

あなたがここにピボット項目の全体のスタイルを探すことができ、マイクロソフトが提供するデフォルトのピボットのスタイルとテンプレートを使用して試してみて、この

<VisualState x:Name="Selected"> 
       <Storyboard> 
       <ObjectAnimationUsingKeyFrames Storyboard.TargetName="ContentPresenter" 
               Storyboard.TargetProperty="Foreground" > 
        <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource SystemControlHighlightAltBaseHighBrush}" /> 
       </ObjectAnimationUsingKeyFrames> 
       <ObjectAnimationUsingKeyFrames Storyboard.TargetName="Grid" 
               Storyboard.TargetProperty="Background" > 
        <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource SystemControlHighlightTransparentBrush}" /> 
       </ObjectAnimationUsingKeyFrames> 
       </Storyboard> 
      </VisualState> 

のように選択した項目のためにそこに前景色を編集 - https://msdn.microsoft.com/en-us/library/windows/apps/mt299142.aspx

関連する問題