访问数据模板中的元素

本文关键字:元素 数据 访问 | 更新日期: 2023-09-27 18:24:47

我有以下项目模板(我试图剥离所有不相关的东西(:

<s:SurfaceWindow.Resources>
    <ResourceDictionary>
        <Style TargetType="{x:Type s:SurfaceListBox}">
            <Setter Property="ItemTemplate">
                <DataTemplate DataType="{x:Type local:myClass}"> //my own class
                    <s:SurfaceButton>
                        <TextBlock Text="{Binding name}">        //name is a string in my own class
//and close all the tags

这个想法是我的列表框将包含在其上显示一些单词的按钮。

再往下,我有一个使用上述资源的SurfaceListBox。我通过以下方式添加项目:

myListBox.Items.Add(new myClass("My Name"));

它会很好地向列表框添加一个按钮,该按钮显示"我的名字"。

现在我需要将"我的名字"更改为另一个字符串。

如何访问该TextBlock

我尝试过谷歌搜索,但是访问DataTemplate项目的解决方案都需要通过FindVisualChild VisualTreeHelper.GetChildrenCount,这对我来说返回0,所以它不起作用。

访问数据模板中的元素

实现此目的的简单而正确的方法是使用 DataBinding .

更新 TextBlock

XAML,以便 TextBlock 可以在后端name属性更改时自行更新

<TextBlock Text="{Binding name, UpdateSourceTrigger=PropertyChanged}">

在你myClass实现INotifyPropertyChanged。然后,每当您希望更改文本呼叫PropertyChanged事件时。

public name
{
    get
    {
        return _name;
    }
    set
    {
        _name = value;
        PropertyChanged("name");
    }
}