View Single Post
Old 03-28-2011, 05:20 AM   #1
yongkang2216
Chief Warrant Officer
 
Join Date: Mar 2011
Posts: 375
yongkang2216 is on a distinguished road
Default Windows 7 Starter Xceed Community - ListView Bugs

I think I may have determined a pair of bugs during the ListView in the Office2007 Themes.,Windows 7 Starter
1) My ListViewItems (stackpanel with the picture and textblock within) will not screen.
2) There seems to be some kind of clickable button with the high of your ListView working with your theme but there is 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.
yongkang2216 is offline   Reply With Quote

Sponsored Links