View Single Post
Old 04-06-2011, 11:42 PM   #1
buest425
 
Posts: n/a
Default Office 2010 Activation Xceed Community - ListView

I suppose I might have uncovered a pair of bugs within the ListView with the Office2007 Themes.,Office 2010 Activation
1) My ListViewItems (stackpanel with an image and textblock within) don't exhibit.
2) There appears to be some form of clickable button on the major for the ListView utilizing your theme but there is absolutely no button when the concept is eliminated.
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">
<Image 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.
  Reply With Quote

Sponsored Links