vote up 0 vote down star

Start a new Silverlight application... and in the code behind (in the "Loaded" event), put this code:

// This will *NOT* cause an error.
this.LayoutRoot.DataContext = new string[5];

But...

// This *WILL* cause an error!
this.LayoutRoot.DataContext = this;

The error that is raised is "Value does not fall within the expected range." BTW, this code works 100% in regular WPF (Windows development), and there should be no reason why it won't work in WPF/E :)

Any thoughts?

flag

2 Answers

vote up 4 vote down check

You can't currently use visual elements as a data source for data binding in Silverlight 2. I think this is slated to be added for Silverlight v.Next.

link|flag
Should have known ol' bill would have the answer :) So I'm guessing I'll have to make some pointless intermediate object to store my properties on and then use that as the DataContext. – Timothy Khouri Nov 16 '08 at 14:41
vote up 0 vote down

You can use visual elements as data source if you create binding directly in the code, but trying to assign visual element to DataContext will throw ArgumentException. It doesn't make much sense, but silverlight is just on version 2.

link|flag

Your Answer

Get an OpenID
or

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