4

我正在尝试在加载时动态地将 PivotItem 添加到 Pivot。我需要一些屏幕空间,而标准的数据透视项目标题字体对我来说太大了。一些论坛搜索导致了这个解决方案:

<controls:PivotItem>
   <controls:PivotItem.Header>
      <TextBlock FontSize="{StaticResource PhoneFontSizeLarge} Text="MyHeaderText"/>
   </controls:PivotItem.Header>
</controls:PivotItem>

如果我在 pivotitem XAML 本身中定义它,这个解决方案可以正常工作,但是我如何在 C# 代码中做到这一点?

4

2 回答 2

4

您只需要创建一个Pivot对象和一些PivotItems对象,然后将它们添加PivotItemsPivot. 最后将此添加Pivot到您LayoutRoot的可能是Grid.

像这样的东西,

    void PivotPage2_Loaded(object sender, RoutedEventArgs e)
    {
        var pivot = new Pivot();
        var textBlock = new TextBlock { Text = "header 1", FontSize = 32 };
        var pivotItem1 = new PivotItem { Header = textBlock };

        var textBlock2 = new TextBlock { Text = "header 2", FontSize = 32 };
        var pivotItem2 = new PivotItem { Header = textBlock2 };

        pivot.Items.Add(pivotItem1);
        pivot.Items.Add(pivotItem2);

        this.LayoutRoot.Children.Add(pivot);
    }
于 2011-11-18T14:10:42.737 回答
0

以下代码将aFontSize中所有现有PivotElement的 s设置Pivot为给定值。它还(粗略地)调整标题区域的高度。

代码深入到Pivot的子项并搜索要修改的正确项目:(PivotHeaderItem单个标头)和PivotHeadersControl(包含所有标头)。

using Microsoft.Phone.Controls.Primitives;

delegate void ChildProc(DependencyObject o);
// applies the delegate proc to all children of a given type
private void DoForChildrenRecursively(DependencyObject o, Type typeFilter, ChildProc proc)
{
    // check that we got a child of right type
    if (o.GetType() == typeFilter)
    {
        proc(o);
    }

    // recursion: dive one level deeper into the child hierarchy
    for (int i = 0; i < VisualTreeHelper.GetChildrenCount(o); i++)
    {
        DoForChildrenRecursively(VisualTreeHelper.GetChild(o, i), typeFilter, proc);
    }
}

// applies the given font size to the pivot's header items and adjusts the height of the header area
private void AdjustPivotHeaderFontSize(Pivot pivot, double fontSize)
{
    double lastFontSize = fontSize;
    DoForChildrenRecursively(pivot, typeof(PivotHeaderItem), (o) => { lastFontSize = ((PivotHeaderItem)o).FontSize; ((PivotHeaderItem)o).FontSize = fontSize; });
    // adjust the header control height according to font size change
    DoForChildrenRecursively(pivot, typeof(PivotHeadersControl), (o) => { ((PivotHeadersControl)o).Height -= (lastFontSize - fontSize) * 1.33; });
}

private void button1_Click(object sender, RoutedEventArgs e)
{
    // make header items having FontSize == PhoneFontSizeLarge
    AdjustPivotHeaderFontSize(pivot, (double)Resources["PhoneFontSizeLarge"]);
}

如果您想知道*1.33标题高度计算的来源 - 它是受这篇博文的启发。

于 2011-11-18T21:39:53.750 回答