vote up 1 vote down star

Hi everyone,

I have a simple WPF ListView and a simple question:

Is it possible to turn off the selection, so when user clicks row, the row is not highlighted?

listView

I would like the row 1 to look just like row 0 when clicked.

Possibly related: can I style the look of the hover / selection? Eg. to replace the blue gradient hover look (line 3) with a custom solid color. I have found this and this, unfortunately not helping.

(Achieving the same without using ListView is acceptable too. I'd just like to be able to use logical scrolling and UI virtualization as ListView does)

Thank you very much for your help.

The XAML for ListView is this:

<ListView Height="280" Name="listView">
    <ListView.Resources>
        <!-- attempt to override selection color -->
        <SolidColorBrush x:Key="{x:Static SystemColors.HighlightColorKey}"
                         Color="Green" />
    </ListView.Resources>
    <ListView.View>
        <GridView>
            <GridView.Columns>
                <GridViewColumn Header="Name" DisplayMemberBinding="{Binding Name}" />
                <!-- more columns -->
            </GridView.Columns>
        </GridView>
     </ListView.View>
</ListView>
flag

75% accept rate

3 Answers

vote up 4 vote down check

You can do this a number of ways, from changing the ListViewItem's ControlTemplate to just setting a style (much easier). You can create a style for the ListViewItems using the ItemContainerStyle and 'turn off' the background and border brush when it is selected.

<ListView>
    <ListView.ItemContainerStyle>
    	<Style TargetType="{x:Type ListViewItem}">
    		<Style.Triggers>
    			<Trigger Property="IsSelected"
    					 Value="True">
    				<Setter Property="Background"
    						Value="{x:Null}" />
    				<Setter Property="BorderBrush"
    						Value="{x:Null}" />
    			</Trigger>
    		</Style.Triggers>
    	</Style>
    </ListView.ItemContainerStyle>
    ...
</ListView>

Also, unless you have some other way of notifying the user when the item is selected (or just for testing) you can add a column to represent the value:

<GridViewColumn Header="IsSelected"
				DisplayMemberBinding="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type ListViewItem}}, Path=IsSelected}" />
link|flag
Didn't see the related part, but you can do the same thing, setting the background and border as you like on the IsMouseOver property. – rmoore Jun 26 at 21:23
Thanks a million, I wish I could donate some of my reputation to you. I also managed to style the rows to alternate colors: live.mscommunity.net/blogs/borissevo/… I find WPF a little unintuitive (I'm a beginner), I would never figure out to style ListViewItems as ItemContainerStyle, why is there no GridView.SelectedRowStyle, GridView.HoverRowStyle? Thank you! – Martin Konicek Jun 26 at 21:55
I solved it even better now - <Setter Property="Focusable" Value="false"/> completely disables selecting the row. – Martin Konicek Jun 26 at 22:48
Ahh, I thought you meant just turn off Selection visually. If you don't want them to be selected at all, you might want to take a look at using an ItemsControl (Since you can still set the selected items through code if they arn't focusable), though to get the Grid look you'll have to do something like this: manicprogrammer.com/cs/blogs/… Also, if you haven't yet, you may want to check out the book WPF Unleashed, as it provides a great introduction to WPF & XAML. – rmoore Jun 26 at 23:03
Thanks for the tip and your help again. Dissabling the selection using Focusable is perfectly OK for me. I tried using the ItemsControl as in manicprogrammer.com/cs/blogs/…, but I am also using data virtualization based on codeproject.com/KB/WPF/…, which did not work with ItemsControl (it enumerated whole IList at once). Also, I could not make the ItemsControl to use logical scrolling (although it may be possible). – Martin Konicek Jun 27 at 8:30
vote up 1 vote down

Further to the solution above... I would use a MultiTrigger to allow the MouseOver highlights to continue to work after selection such that your ListViewItem's style will be:

        <ListView.ItemContainerStyle>
            <Style TargetType="ListViewItem">
                <Style.Triggers>
                    <MultiTrigger>
                        <MultiTrigger.Conditions>
                            <Condition Property="IsSelected" Value="True" />
                            <Condition Property="IsMouseOver" Value="False" />
                        </MultiTrigger.Conditions>
                        <MultiTrigger.Setters>
                            <Setter Property="Background" Value="{x:Null}" />
                            <Setter Property="BorderBrush" Value="{x:Null}" />
                        </MultiTrigger.Setters>
                    </MultiTrigger>
                </Style.Triggers>
            </Style>
        </ListView.ItemContainerStyle>
link|flag
vote up -1 vote down

I've never used a ListView in WPF before, but I'm sure that there is some sort of IsEnabled property that, if set to false, would disable the entire control and would probably achieve what you're after, but I'm not 100% sure.

link|flag
Hi, yes there is an IsEnabled property, which can disable the whole ListView. I need the ListView to be working normally though, just don't display the selection. – Martin Konicek Jun 26 at 20:57
Ah, my bad, I misunderstood what you were looking for. – James McConnell Jun 26 at 21:09
Thanks for your effort anyway.. – Martin Konicek Jun 26 at 22:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.