C++ のコード ビハインドで暗黙的なスタイルを変更したいのですが、ドキュメントには明確な指示がありません。
基本的に、私はこれをやりたいです(C#でどのように行うか)。
public MainPage()
{
this.InitializeComponent();
Windows.UI.Xaml.Style style = new Windows.UI.Xaml.Style { TargetType = typeof(FlipViewItem) };
style.Setters.Add(new Windows.UI.Xaml.Setter(FlipViewItem.IsTabStopProperty, false));
this.Resources.Add(style.TargetType, style);
}
ただし、C++ では。これにより、FlipViewItems が既定でタブ ストップにならなくなります。
乾杯、トーマス