0

我想更改 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 默认不是制表位。

干杯,托马斯

4

1 回答 1

1

Try something like

auto comicFont= ref new Windows::UI::Xaml::Media::FontFamily("Comic Sans MS");
auto comicFontStyle = ref new Windows::UI::Xaml::Style(TextBlock::typeid);
auto fSetter=ref new Setter(TextBlock::FontFamilyProperty, comicFont );
comicFontStyle->Setters->Append(fSetter);       
this->Resources->Insert(comicFontStyle->TargetType,comicFontStyle );
于 2012-11-23T22:17:34.127 回答