是否可以为x:Reference
代码中的绑定设置标记扩展?
例如:
{Binding SelectedItem, Source={x:Reference ComboList}}
所以我创建了一个这样的绑定:
Binding b = new Binding("SelectedItem");
b.Source = //What to put here??
我以前使用过,但我在这个问题ElementName
中提到的 NameScope 有一些问题,因为这个绑定是在我创建的 UserControl 内部的 ComboBox 中设置的,显然如果我使用namescope 仅限于该 UserControl 而不是外部..ElementName
谢谢!