Can anyone help me? it seems no way to do this in blend 4

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

The method I'm using now - although really less than perfect - is by creating a dummy class which contains a list of items of the original class. I.e.:

class We_Want_Items_Of {}
class Dummy_Class { List<We_Want_Items_Of> Test {get;set;}}

Then you can create a sample datum for the Dummy_Class, which will contain a list of We_Want_Items_Of's. You can then use that list as a data source for, for instance, a ListBox.

link|improve this answer
feedback

With Blend 4 open, go to Data tab.. hit the second icon from right("Create sample data").. select "Create sample data from class.." and select your class. This will generate sample data source. You can bind your controls to this data source to see the controls filled with sample in Blend designer. HTH.

link|improve this answer
Also you need to have the XAML page open when you do this or else these options are disabled. – Alex Angas Jan 5 '11 at 19:42
feedback

Your Answer

 
or
required, but never shown

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