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

WPF,解决Listbox,按住ListboxItem向下拖出Listbox,横向滚动条跑到最后。

时间:2015-05-22 18:43:42      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

类似这种样式的控件,。,在横向滚动条隐藏的情况下有这样的问题。(横向滚动条显示的时候也会,,目前不知道怎么解决。)

因为这个控件偏移是利用ListBox的ItemsPanelTemplate模版里的StackPanel的宽度通过设置"(UIElement.RenderTransform).(TranslateTransform.X)"来偏移到指定位置。

所以的横向滚动条必须在最前面不能动,不然便宜位置会出错。

如图按住4,按住鼠标向下移动出ListBox,滚动条会自动跑到最后.

解决方法 

How to disable ListBox auto scroll on mouse down and auto scrollintoview on item selected?

 

    public class TListBoxDisableScroll : System.Windows.Controls.ListBox
    {
        #region 解决按住Item向下拖动,滚动条跑到最后
        protected override void OnPreviewMouseMove(MouseEventArgs e)
        {
            base.OnPreviewMouseMove(e);
            e.Handled = true;
        }

        protected override void OnIsMouseCapturedChanged(DependencyPropertyChangedEventArgs e)
        {

        }
        #endregion
    }

  或者强制滚动到第一个

        private void ScrollViewer_ScrollChanged(object sender, System.Windows.Controls.ScrollChangedEventArgs e)
        {
            theListBox.ScrollIntoView(theListBox.Items[0]);
        	// 在此处添加事件处理程序实现。
        }

  

WPF,解决Listbox,按住ListboxItem向下拖出Listbox,横向滚动条跑到最后。

标签:

原文地址:http://www.cnblogs.com/m7777/p/4522676.html

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