I've created some sample data as a StaticResource in a Sketchflow prototype (this is a Silverlight project). I want to filter or group-by the sample data before binding it to a gridview for display.

How do I get at the sample data in my C# codebehind files in order to filter or group-by it before display?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Something like this:

var sds = this.Resources["SampleDataSource"] as SampleDataSource;

This works in my SketchFlow SL project under the following conditions: 1. My sample data is named SampleDataSource 2. Sample data is at the application level (this should work for document level as well however)

Once you have the sds object, you can modify the Collection property (or whatever you named the pieces in your sample data).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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