更改datatemplate资源运行时

时间:2011-07-28 10:16:12

标签: silverlight

我在我的xaml文件中创建了一个datatemplate资源

<navigation:Page.Resources>
        <DataTemplate x:Key="PageFooter" >
            <StackPanel Width="{Binding Path=UsablePageWidth, Mode=OneWay}" Height="Auto"  x:Name="spFooter" HorizontalAlignment="Center">
                <TextBlock  x:Name="txtParameter" FontSize="16" Text="{Binding}"
 FontWeight="Bold" Foreground="White" 
                           HorizontalContentAlignment="Center" 
                           Width="{Binding Path=UsablePageWidth, Mode=OneWay}"
                           Background="Black" Height="35" />
            </StackPanel>
        </DataTemplate>
    </navigation:Page.Resources>

现在在我的代码后面我想用我的数据库值

更新这个Textblock

怎么做?我是银光的新手

0 个答案:

没有答案