Does Visual Studio 2010 Visual Designer allow loading of data via external XML files during design time?
It appears that I can add it via d:DataContext, but I have a lot of data and it is easier to load it via XML. So is this possible?
One thing you can do is make a design time version of the repository (or other object) that you would use during runtime. A simple approach that I use on a regular basis goes like so.
in App.xaml:
<Application ...>
<Application.Resources>
<local:MyClass x:key="DesignData"/>
</Application.Resources>
</Application>
then in your class constructor you can detect that you are in design mode and populate the data accordingly:
public class MyClass
{
public MyClass()
{
bool isInDesign = DesignerProperties.GetIsInDesignMode(new DependencyObject());
if (isInDesign)
{
// Load your XML + other setup routines.
}
// Normal ctor code.
}
}
Finally, use this item and its data as your context.
<Window ...>
<Grid d:DataContext="{StaticResource DesignData}">
...
</Grid>
</Window>
This is probably the simplest approach that you can use to get complex design time data. Of course you may need to use a subclass of 'MyClass' or other approaches for very complicated scenarios, but it sounds like you know enough to handle that. Speaking from personal experience you can use this approach to make design data for any program state that you can think of, and you can even go so far as to pull live data from a DB if you want. Of course, the earlier you start thinking about design data in your application the easier it will be to actually make it work.