码迷,mamicode.com
首页 > 其他好文 > 详细

如何阻止点击scrollviewer里面的单位内容时,自动滚动

时间:2017-09-12 17:46:40      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:pix   int   rgs   setter   event   snap   als   led   into   

 1 <Style TargetType="{x:Type ListBoxItem}">
 2 <Setter Property="FocusVisualStyle" Value="{x:Null}" />
 3 <Setter Property="Background" Value="Transparent" />
 4 <EventSetter Event="RequestBringIntoView" Handler="OnRequestBringIntoView" />//这句话起作用
 5 <Setter Property="Template">
 6 <Setter.Value>
 7 <ControlTemplate TargetType="{x:Type ListBoxItem}">
 8 
 9 <ContentPresenter HorizontalAlignment="Stretch"
10 VerticalAlignment="Stretch"
11 SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
12 </ControlTemplate>
13 </Setter.Value>
14 </Setter>
15 </Style>
1 //cs代码
2 private void OnRequestBringIntoView(object sender, RequestBringIntoViewEventArgs e)
3         {
4             e.Handled = true;
5         }

 

如何阻止点击scrollviewer里面的单位内容时,自动滚动

标签:pix   int   rgs   setter   event   snap   als   led   into   

原文地址:http://www.cnblogs.com/zsx-blog/p/7511011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!