码迷,mamicode.com
首页 > Windows程序 > 详细

WPF 禁用ItemControl 自动滚动

时间:2020-06-10 11:18:24      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:work   void   vat   event   alt   control   style   后台   hand   

技术图片

 

 

禁用FameworkElement中的RequestBringIntoViewEvent事件即可,

Xaml:

<ListBox >
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<EventSetter Event="RequestBringIntoView" Handler="ListBoxItem_RequestBringIntoView"></EventSetter>
</Style>
</ListBox.ItemContainerStyle>

</ListBox >

 

后台事件:

private void ListBoxItem_RequestBringIntoView(object sender, RequestBringIntoViewEventArgs e)
{
e.Handled = true;
}

 

WPF 禁用ItemControl 自动滚动

标签:work   void   vat   event   alt   control   style   后台   hand   

原文地址:https://www.cnblogs.com/messi1314/p/13083450.html

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