我想在列表框的ItemTemplate(datatemplate)中访问StackPanel UIElement:
<ListBox x:Name="list">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel x:Name="stk" >
// some other stuffs
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
但是如何?