更改按钮控件模板内的文本块文本的内容

本文关键字:文本 按钮 控件 | 更新日期: 2023-09-27 17:55:48

我有一个按钮,其控件模板是堆栈面板。堆栈面板内部有文本块。我的疑问是如何动态更改该文本块的文本。?

<Button x:Name="Animate" Width="auto" Height="25" Click="Button_Click_2" Content="Close">
                <Button.Template>
                    <ControlTemplate>                        
                        <StackPanel Orientation="Horizontal">
                            <TextBlock x:Name="AnimateTextBlock" Text="Actions" VerticalAlignment="Center" FontSize="14"></TextBlock>
                            <Image Source="/HB.EmployeeInfo;component/Images/Actions.png"  Width="20" Height="20"></Image>
                        </StackPanel>
                    </ControlTemplate>
                </Button.Template>
            </Button>

我想动态更改动画文本块文本..??怎么做。?

更改按钮控件模板内的文本块文本的内容

按钮操作代码中添加以下行:

x.Text = "Text Box content";

前任:

private void Button_Click_2(object sender, RoutedEventArgs e)
{
x.Text = "Text Box content";
  }

查看该文章以了解按钮控件:

http://www.silverlightshow.net/items/Button-Controls-in-Silverlight-2-Beta-1.aspx