标签: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;
}
标签:work void vat event alt control style 后台 hand
原文地址:https://www.cnblogs.com/messi1314/p/13083450.html