I have an ItemControl that has a rather sophisticated ItemTemplate that allows the user to edit an order. Unfortunately, the design surface in Visual Studio does not display an ItemTemplate, so I do not get instant feedback from the changes I make. Is there a way to render ItemTemplate in Visual Studio? Here is the structure of my control:
<ItemsControl ItemsSource="{Binding Orders, Mode=TwoWay}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Grid>
</Grid>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
source
share