vote up 0 vote down star

I am getting a run-time error when I use DataBinding, and it is driving me crazy. I have a simple UserControl that I have defined, let's call it SillyControl. Separately, I have a collection

ObservableCollection<MyClass> myObjects;

and a ListBox called SillyListBox which is bound to this ObservableCollection via: SillyListBox.ItemsSource = myObjects; The ListBox is defined in XAML as so:

<ListBox x:Name="SillyListBox">
 <ListBox.ItemTemplate>
  <DataTemplate>
    <MyControls:SillyControl TestString="{Binding Name}" />
  </DataTemplate>
 </ListBox.ItemTemplate>
</ListBox>

So, whenever an object is added to the collection myObjects, a new SillyControl should be added to the ListBox and the property TestString of that SillyControl should be bound to the Name property of the MyClass object it represents.

This doesn't work. It compiles fine, but when I run the program, it gives me a nasty runtime error - System.Windows.Markup.XamlParseException and below that something that says AG_E_PARSER_BAD_PROPERTY_VALUE.

Now, if I simply remove the Binding, give TestString a fixed value, for instance, the error disappears. It is also possible for me to define a TextBlock control instead of a SillyControl and successfully use binding on it. What on Earth is causing this to happen?

Update: As requested, here is how SillyControl is defined:

public partial class SillyControl : UserControl
{
    private string testString;
    public string TestString
    {
        get { return testString; }
        set { testString = value; }
    }

    public SillyControl()
    {
        InitializeComponent();
    }
}

The XAML is truly barebones. I am using the default XAML, so it is nothing more than an empty Grid.

UPDATE 2: I have created a very simple test project for download that recreates the problem.

flag

57% accept rate
We need to know more about SillyControl. The Xaml parser is not finding a property called TestString on the control. – AnthonyWJones Apr 3 at 9:26
Thanks for the feedback. I've updated the question. – JubJub Apr 3 at 18:04

2 Answers

vote up 1 vote down

Turns out that the property being bound to must be a DependencyProperty.

link|flag
vote up 1 vote down

MyClass needs to implement INotifyPropertyChanged: http://weblogs.asp.net/joelvarty/archive/2008/11/17/silverlight-databinding-the-observable-collection.aspx

link|flag
I agree that would be good but why would not implementing that interface result in the error. It would just mean that changes made to the property value would fail to make it into the UI but it shouldn't cause this error – AnthonyWJones Apr 3 at 8:15
MyClass was implementing INotifyProperty when this error occurred. I also tested with INotifyProperty removed. No go either way. – JubJub Apr 3 at 17:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.