Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ListBox Disable highlight when selecting - Windows Phone 7

I am trying to disable highlight when an item in ListBox is selected. That means, the item in the ListBox still fires the select event but it doesn't change the colour

like image 732
vodkhang Avatar asked Dec 28 '10 04:12

vodkhang


1 Answers

kP outlined the procedure to apply highlighting here.

Windows Phone 7: Highlight Selected Listbox item

The procedure is pretty much the same to remove the highlighting.. you just delete the storyboard in the Selected Visual State from the copy you made of the template.

So..

  1. Open the project in blend.
  2. Target the listbox
  3. Right click, Edit Additional Templates, Edit Generated Item Container, Edit a Copy
  4. Go to the xaml and change
<VisualState x:Name="Selected">
  <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Foreground" Storyboard.TargetName="ContentContainer">
      <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PhoneAccentBrush}"/>
    </ObjectAnimationUsingKeyFrames>
  </Storyboard>
</VisualState>

to

<VisualState x:Name="Selected"/>
like image 175
Mick N Avatar answered Oct 15 '22 09:10

Mick N