0
如果在DataTemplate中將它設置爲Textbox控件,如何查找ListBoxItem的索引?這裏是WPF:查找ListBox ListBox索引(ItemsTemplate指定Visual COntent)
<ListBox Name="ScriptEditor" Margin="10" Height="291" ItemsSource="{Binding Path=Script}" SelectionChanged="ScriptEditor_SelectionChanged_1" >
<ListBox.ItemTemplate>
<DataTemplate>
<TextBox Text="{Binding Path=Command}"PreviewMouseDoubleClick="Command_DoubleClick" GotFocus="ScriptEditor_GotFocus" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
當我獲得文本框的焦點(文字,勢必一個ObservableCollection),我不能簡單地用SelectionChanged事件的列表框。我想知道我怎麼能確定我已經獲得焦點的文本框的索引。
感謝
真棒,即做到了! – GCar89