これが私のUserControlのコンボボックスです:
<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内にあります。