Click here to Skip to main content
Click here to Skip to main content

WPF ListView look-and-feel for WPF ListBox items

By , 31 Oct 2011
 

Add the following XAML snippet to your XAML resource section and you will get WPF ListBox items with the same look-and-feel as the items in a WPF ListView. Much nicer I think than the ListBox default.

Plain and Boring

Gradient and Nice Looking

<lineargradientbrush x:key="{x:Static SystemColors.HighlightBrushKey}" 
           endpoint="0,1" startpoint="0,0" xmlns:x="#unknown">
  <gradientstop color="#FFD9F4FF" offset="0" />
  <gradientstop color="#FF9BDDFB" offset="1" />
</lineargradientbrush>
<lineargradientbrush x:key="{x:Static SystemColors.ControlBrushKey}" 
           endpoint="0,1" startpoint="0,0" xmlns:x="#unknown">
  <gradientstop color="#FFEEEDED" offset="0" />
  <gradientstop color="#FFDDDDDD" offset="1" />
</lineargradientbrush>
<solidcolorbrush x:key="{x:Static SystemColors.HighlightTextBrushKey}" color="Black" xmlns:x="#unknown" />
<solidcolorbrush x:key="{x:Static SystemColors.ControlTextBrushKey}" color="Black" xmlns:x="#unknown" />
 
<Style TargetType="{x:Type ListBoxItem}">
  <setter property="BorderThickness" value="1.5" />
  <Style.Triggers>
    <trigger property="IsSelected" value="True">
      <setter property="BorderBrush" value="#adc6e5" />
    </trigger>
  </Style.Triggers>
  <Style.Resources>
    <Style TargetType="Border">
      <setter property="CornerRadius" value="2" />
    </Style>
  </Style.Resources>
</Style>

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralReason for my vote of 5 Good One.memberring_01-Nov-11 2:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 31 Oct 2011
Article Copyright 2011 by Måns Tånneryd
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid