I'm writing a questionnnaire library for c# wpf.
In it I have a UserControl
called MultipleChoiceOption
. It has the DependencyProperty OptionType
.
If the OptionType
is "combobox" I insert a combobox.
I want to be able to bind the ItemsSource
of the combobox to a DependencyProperty of the MultipleChoiceOption
so I created this:
public static readonly DependencyProperty MultipleChoiceComboBoxItemsProperty =
DependencyProperty.Register("ComboBoxItems", typeof(List<string>), typeof(MultipleChoiceOption));
...
public List<string> OptionText
{
get { return GetValue(MultipleChoiceOptionTextProperty) as List<string>; }
set { SetValue(MultipleChoiceOptionTextProperty, value); }
}
If the optionType
is "combobox" I add a combobox and set up a binding like this:
case "combobox":
var combobox = new ComboBox
{
HorizontalAlignment = HorizontalAlignment.Right
};
var b = new Binding()
{
Path = new PropertyPath(MultipleChoiceComboBoxItemsProperty),
Source = ComboBoxItems
};
combobox.SetBinding(ComboBox.ItemsSourceProperty, b);
combobox.SelectionChanged += ComboBoxChanged;
stackPanel.Children.Add(textBlock);
stackPanel.Children.Add(combobox);
container.Children.Add(stackPanel);
break;
In my demo app I try to set the binding to a List<string>
:
<wpfQuestionnaire:MultipleChoiceQuestion
QuestionNumber="2.1"
QuestionText="What friuts do you like the most of the following?">
<wpfQuestionnaire:MultipleChoiceOption
OptionType="combobox"
ComboBoxItems="{Binding RelativeSource={
RelativeSource
Mode=FindAncestor,
AncestorType={x:Type Window}},
Path=QuestionTwoOneOptions,
Mode=TwoWay}"/>
</wpfQuestionnaire:MultipleChoiceQuestion>
Code behind:
public partial class MainWindow : INotifyPropertyChanged
{
public MainWindow()
{
InitializeComponent();
Loaded += OnLoaded;
}
private void OnLoaded(object sender, RoutedEventArgs e)
{
MyQuestionnaire.QuestionnaireSubmitted += OnSubmitted;
QuestionTwoOneOptions = new List<string>
{
"Apple",
"Orange",
"Pear"
};
}
private List<string> _questionTowOneOptions;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string property)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(property));
}
private void OnSubmitted(object sender, QuestionnaireSubmittedEventArgs e)
{
foreach (var a in e.AllAnswers)
{
Debug.WriteLine(a.Answer);
}
}
public List<string> QuestionTwoOneOptions
{
get { return _questionTowOneOptions; }
set
{
_questionTowOneOptions = value;
OnPropertyChanged(nameof(QuestionTwoOneOptions));
}
}
}
This results in the following error:
System.Windows.Data Error: 17 : Cannot get 'ComboBoxItems' value (type 'List`1') from '' (type 'List`1'). BindingExpression:Path=(0); DataItem='List`1' (HashCode=23674331); target element is 'ComboBox' (Name=''); target property is 'ItemsSource' (type 'IEnumerable') InvalidCastException:'System.InvalidCastException: Unable to cast object of type 'System.Collections.Generic.List`1[System.String]' to type 'System.Windows.DependencyObject'.
I don't get why it's trying to cast the list to a DependencyObject
.
I guess I'm a bit confused about what types to use go get a binding between a List<T>
--> DependencyProperty
--> ItemsSource
.
The Binding
b
you create goes to a propertyMultipleChoiceComboBoxItemsProperty
within theComboBoxItems
which is aList<string>
and thus obviously does not have the desired property. Trying to resolve thisDependencyProperty
, theSource
has to be cast to aDependencyObject
which leads to the error.Using
Source = this
should solve the problem.