How to modify DatagridTemplateColumn header content runtime in Silverlight?

非 Y 不嫁゛ 提交于 2019-12-11 05:47:59

问题


I defined the DataGridTemplateColumn.HeaderStyle as resource.

<UserControl.Resources>
 <Style x:Key="DataGridHeaderStyleProductName" TargetType="sdk:DataGridColumnHeader">
  <Setter Property="ContentTemplate">
   <Setter.Value>
    <DataTemplate>
     <StackPanel Orientation="Horizontal">
      <TextBlock x:Name="ProductName" Text="ProductName" />
     </StackPanel>
    </DataTemplate>
   </Setter.Value>
  </Setter>
 </Style>
</UserControl.Resources>

I need to modify the Text of TextBlock (ProductName) runtime. How can I modify?

来源:https://stackoverflow.com/questions/7934042/how-to-modify-datagridtemplatecolumn-header-content-runtime-in-silverlight

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!