私はこれを持っています:
<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>
これは、コレクションの「AttributeName」プロパティにバインドされていることに注意してください。私ができるようにしたいのは、プログラムで「AttributeName」を別のものに変更することです。これは可能ですか?