I believe that I may have identified a pair of bugs during the ListView from the Office2007 Themes.,
Windows 7 64 Bit
1) My ListViewItems (stackpanel with the image and textblock within) will not exhibit.
2) There appears to be some form of clickable button at the best on the ListView by using your theme but there is absolutely no button once the concept is removed.
Here may be the XAML for my listbox:
<ListView DockPanel.Dock="Left"
Width="130"
Height="Auto"
Name="lstSections"
SelectionChanged="lstSections_SelectionChanged">
<ListView.GroupStyle>
<GroupStyle>
<GroupStyle.HeaderTemplate>
<DataTemplate>
<TextBlock Text="Binding Name"
Foreground="#FF0000D5" />
</DataTemplate>
</GroupStyle.HeaderTemplate>
</GroupStyle>
</ListView.GroupStyle>
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Picture Source="Binding DisplayImage"
Height="16"
Width="16" />
<TextBlock Text="Binding DisplayName"
Foreground="Black"
VerticalAlignment="Center" />
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
Any help resolving these issues would be appreciated.