gpt4 book ai didi

Silverlight - listbox.ItemTemplate 的动态绑定(bind)

转载 作者:行者123 更新时间:2023-12-02 02:38:12 24 4
gpt4 key购买 nike

我有这个:

<ListBox x:Name="PART_lstAttributes" Grid.Row="1" Style="{StaticResource GlossyBlackListBox}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock x:Name="txtAttributeName" Text="{Binding AttributeName}"></TextBlock>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

请注意,这个绑定(bind)到我的集合的“AttributeName”属性。我希望能够以编程方式将“AttributeName”更改为其他名称。这可能吗?

最佳答案

以下解决方案将在没有显式绑定(bind)的属性的情况下工作,假设您的数据项是字符串或启用了 ToString。

 <DataTemplate>
<StackPanel>
<TextBlock x:Name="txtAttributeName" Text="{Binding}"></TextBlock>
</StackPanel>
</DataTemplate>

关于Silverlight - listbox.ItemTemplate 的动态绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/354087/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com