这是我的用户控件中的组合框:
<Combobox ItemsSource="{Binding ComboItemsProperty}" />
我试过了:
Binding bind = new Binding();
bind.Mode = BindingMode.OneWay;
bind.Source = this;
bind.Path = new PropertyPath("ComboItemsProperty");
this.SetBinding(ComboBox.ItemsSourceProperty, bind);
但是,这不起作用。我认为我在做 bind.Source 错误,但我不确定将 Source 设置为什么。此代码在我的 UserControl.xaml.cs 中。