将文本设置为自定义标题页枢轴

时间:2013-02-02 19:18:01

标签: c# silverlight windows-phone-7 xaml

我已经创建了数据透视页面,我希望在顶部的2个文本块中显示一些信息。我已经创建了DataTemplate并为文本字段设置了x:names。但我不能从页面构造函数到这个文本块并将文本放在那里。为什么?我怎么能欺骗这种情况呢?我需要在页面加载时添加文本块信息。

        <controls:Pivot.TitleTemplate>
            <DataTemplate>
                <StackPanel Orientation="Horizontal">
                    <TextBlock x:Name="textBlock_eventID" TextWrapping="NoWrap" Margin="0"/>
                    <TextBlock x:Name="textBlock_eventName"  TextWrapping="NoWrap" Opacity="0.7"/>
                </StackPanel>
            </DataTemplate>
        </controls:Pivot.TitleTemplate>

1 个答案:

答案 0 :(得分:2)

使用DataTemplate的目的是定义业务对象的表示。也就是说,如果您有类似以下的类:

public class MyClass
{
    public string StringOne { get; set; }
    public string StringTwo { get; set; }
}

如果将Pivot控件的Title属性设置为此类的实例,则可以使用DataTemplate定义您希望它的外观。

在您的情况下,模板可能如下所示:

    <controls:Pivot.TitleTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="{Binding StringOne}" TextWrapping="NoWrap" Margin="0"/>
                <TextBlock Text="{Binding StringTwo}" TextWrapping="NoWrap" Opacity="0.7"/>
            </StackPanel>
        </DataTemplate>
    </controls:Pivot.TitleTemplate>

然后从代码隐藏中,您将设置Pivot控件的Title属性。像这样:

 myPivotControl.Title = new MyClass 
     { 
         StringOne = "Some String", 
         StringTwo = "Some other string" 
     };

还有另一种方法可以做到这一点,这将允许您简单地从后面的代码设置文本框,但这不涉及DataTemplate。

如下所示设置Pivot控件的Title属性,可以按名称访问TextBox:

    <controls:Pivot.Title>
        <StackPanel Orientation="Horizontal">
            <TextBlock x:Name="textBlock_eventID" TextWrapping="NoWrap" Margin="0"/>
            <TextBlock x:Name="textBlock_eventName"  TextWrapping="NoWrap" Opacity="0.7"/>
        </StackPanel>
    </controls:Pivot.Title>

Read this article for more on DataTemplates