2009-10-23 74 views

回答

4

有很多方法可以做到這一點。這只是其中之一。使用我的FocusExtension. IsFocused附加屬性。將它綁定到TreeViewItem.IsSelectedProperty,如果你沒有下面的ViewModel的話。像

<TextBox local:FocusExtension.IsFocused="{Binding IsSelected, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type TreeViewItem}}}" /> 

應該工作。我從頭開始輸入,並沒有檢查語法。複製粘貼時要小心:)。

+0

非常感謝。我會試試這個。 – FromTheMountain 2009-10-23 11:29:11

相關問題