vote up 2 vote down star

In a MVVM based application, what options do I have to provide ViewModel data at design time, so our designers can actually see something in Blend3 (and VS 2008). How are you doing this? Can I utilize mc:ignorable for this somehow?

flag

52% accept rate

1 Answer

vote up 2 vote down

Yes, Expression Blend can help you with this. Use the "Data" tab to create sample data that has the same shape as your production data. When you create the data source, be sure to uncheck "Enable sample data when application is running".

Sample Data

After you've created your sample data, set the DataContext of your page to the sample data in the XAML. This will let the designers see the sample data when they open the page in Blend.

<navigation:Page DataContext={StaticResource MyFakeDesignData}

In the code for the Loaded handler, write code to set the DataContext to the real model. Since this code will only run when the app is running, and you've told your sample data to not be available when the app is running, this means the running app will get the real data.

private void Home_Loaded(object sender, RoutedEventArgs e)
{
    DataContext = new MyRealViewModel();
}
link|flag

Your Answer

Get an OpenID
or

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