拖放到网格后如何重新获得应用程序的关注

时间:2018-08-03 20:09:35

标签: c# winforms drag-and-drop devexpress devexpress-windows-ui

在我的应用程序中,我有一个包含两个面板的表单。一个面板内部是一个按钮。另一个内部是一个DevExpress Grid控件。网格由3列组成。您可以将值从一列拖到另一列以进行复制。

我的问题是,每当我从一列拖放到另一列时,对应用程序的关注就会进入异常状态。网格保持焦点;我可以将鼠标悬停在标题上,并看到它们的反应正常。但是,本应用程序的其余部分并未重点关注。将鼠标悬停在另一个面板上的按钮上没有反应,菜单或窗体控件也没有反应。如果单击该按钮,它的反应就像单击未聚焦的应用程序一样。我必须再次单击才能真正激活该按钮。除网格外,所有控件均相同。

我尝试在按钮和表单上使用Activate()和Focus(),但无济于事。

namespace Company.StuffUploader
{
    public partial class ComputationGrid : DevExpress.XtraEditors.XtraUserControl
    {
        private BindingList<ComputationLinkModel> _links = new BindingList<ComputationLinkModel>();

        public List<ComputationLinkModel> ComputationLinkModels
        {
            get
            {
                return new List<ComputationLinkModel>(_links);
            }
        }

        public ComputationGrid()
        {
            InitializeComponent();
        }

        private void ComputationGrid_Load(object sender, EventArgs e)
        {
            _gridControl.DataSource = _links;
        }

        private DragDropEffects GetDragEffect(DragEventArgs e)
        {
            var text = e.Data.GetData("System.String") as string;
            if (text == null)
                return DragDropEffects.None;

            var link = GetLinkFromScreenPoint(new Point(e.X, e.Y));
            if (link == null)
                return DragDropEffects.None;

            var tokens = text.Split('\t');
            if (tokens.Count() != 2)
                return DragDropEffects.None;

            var dateString = link.movedate.ToString("yyyy-MM-dd");
            if (link.StuffSurfaceName == tokens[0] && dateString != tokens[1])
                return DragDropEffects.Move;
            else
                return DragDropEffects.None;
        }

        private ComputationLinkModel GetLinkFromScreenPoint(Point screenPt)
        {
            var pt = _gridControl.PointToClient(screenPt);
            var hitInfo = _gridView.CalcHitInfo(pt);
            return _gridView.GetRow(hitInfo.RowHandle) as ComputationLinkModel;
        }

        private void _gridControl_MouseDown(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Left)
            {

                var hitInfo = _gridView.CalcHitInfo(e.Location);
                if (hitInfo == null || !hitInfo.InRowCell)
                    return;

                // Only allow dragging from target column
                if (hitInfo.Column.AbsoluteIndex != 0)
                    return;

                var link = _gridView.GetRow(hitInfo.RowHandle) as ComputationLinkModel;
                if (link == null)
                    return;

                var item = string.Format("{0}\t{1}", link.StuffSurfaceName, link.movedate.ToString("yyyy-MM-dd"));
                DoDragDrop(item, DragDropEffects.Move);
            }
        }

        private void _gridControl_DragOver(object sender, DragEventArgs e)
        {
            e.Effect = GetDragEffect(e);
        }

        private void _gridControl_DragDrop(object sender, DragEventArgs e)
        {
        }

        private void _gridControl_DragEnter(object sender, DragEventArgs e)
        {
            e.Effect = GetDragEffect(e);
        }

        private void _unlinkButton_Click(object sender, EventArgs e)
        {
        }
    }
}

2 个答案:

答案 0 :(得分:0)

确保在GridView的Mouse〜事件处理程序中将 DXMouseEventArgs.Handled 属性设置为true。它保证将禁止默认处理这些事件。查看此example,以了解如何执行此操作。

答案 1 :(得分:0)

我想出了自己的问题。从MouseDown事件中调用DoDragDrop()似乎无法正常工作。正确的方法是从MouseMove()调用它。 documentation on MSDN在其示例代码中对此进行了提示。