I'm binding a list to a ListView using a DataTemplate:
<UserControl.Resources>
<DataTemplate x:Key="eventsListItemTemplate">
<StackPanel Orientation="Vertical"
Margin="50"
Background="#007F7F7F">
<StackPanel Orientation="Horizontal">
<Image Source="/MobileCRM;component/Resources/Images/MenuIcons/icon.png"
Height="40"
Width="40"/>
<TextBlock Text="{Binding Title}"/>
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Text="Utworzono: " FontWeight="Bold"/>
<TextBlock Text="{Binding CreationDate}"/>
</StackPanel>
</StackPanel>
</DataTemplate>
</UserControl.Resources>
And I do it like this:
<ListBox x:Name="EventsList" ItemsSource="{Binding}"
ItemTemplate="{StaticResource eventsListItemTemplate}" Background="#007F7F7F" SelectionChanged="EventsList_SelectionChanged" />
The problem is I'd like to edit this template using Blend instead of manually editing xaml, but I have no idea how to open this template in Blend. Is it possible?
Here are the steps: