我有一个附属物,我可以这样附上
<SomeControl x:FocusExtension:IsFocused="{Binding ..whatever}" />
我有一个包装TextBox的控件。所以我想做的是......
<TextBoxWrapper TextBox.x:FocusExtension:IsFocused="{Binding ..whatever}" />
有没有办法让我在不修改包装器的情况下完成这项工作?
我想将附加属性附加到TextBoxWrapper中的属性。