开发者

ListBox Disable highlight when selecting - Windows Phone 7

开发者 https://www.devze.com 2023-02-01 04:22 出处:网络
I am trying to disable highlight when an item in ListBox is开发者_Python百科 selected. That means, the item in the ListBox still fires the select event but it doesn\'t change the colour kP outlined th

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


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"/>
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号