リストボックスの ItemTemplate(datatemplate) 内の StackPanel UIElement にアクセスしたい:
<ListBox x:Name="list">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel x:Name="stk" >
// some other stuffs
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
しかし、どのように?