<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:model="clr-namespace:ProductionSheets.MVVM.Model">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="TextboxTheme.xaml"/>
</ResourceDictionary.MergedDictionaries>
<Style TargetType="{x:Type ListViewItem}"
x:Key="ShotTheme">
<Style.Setters>
<Setter Property="ContentTemplate">
<Setter.Value>
<DataTemplate DataType="model:ShotModel">
<Border Background="Transparent"
BorderThickness="0,2,0,2"
BorderBrush="#cccccc"
Margin="20,0,20,0">
<StackPanel Orientation="Horizontal">
<TextBox Style="{StaticResource TextboxTheme}"
Name="Scene"
Text="{Binding Scene}"/>
<TextBox Style="{StaticResource TextboxTheme}"
Name="Shot"
Text="{Binding Shot}"/>
<TextBox Style="{StaticResource TextboxTheme}"
Name="Environment"
Text="{Binding Environment}"/>
</StackPanel>
</Border>
</DataTemplate>
</Setter.Value>
</Setter>
</Style.Setters>
</Style>
</ResourceDictionary>