我跟着this tutorial在我的数据网格上实现了Drag& Drop。我根据this link更改了它,以便能够在组之间移动元素。
我的datagrid包含一个带按钮的列,因此我按了this answer使该按钮再次可用。我还有3个ComboBoxes列,它们无法使用(你可以点击它们然后看起来像组合框,但第二次点击不会扩展它)。
其中两个定义为DataGridComboBoxColumn
,其中一个定义为标记DataGridTemplateColumn
中的ComboBox
和DataGridTemplateColumn.CellEditingTemplate
。
前两个是这样的:
<DataGridComboBoxColumn Header="Entity"
ItemsSource="{StaticResource tl}"
DisplayMemberPath="Name"
SelectedValuePath="Name"
SelectedValueBinding="{Binding Entity}"
x:Name="cmbEntity"></DataGridComboBoxColumn>
DataGrid的定义如下所示:
<DataGrid Grid.Row="1" Name="myGrid" IsManipulationEnabled="True" ItemsSource="{Binding Source={StaticResource cvs}}" AutoGenerateColumns="False"
RowEditEnding="myGrid_RowEditEnding" PreviewKeyDown="myGrid_PreviewKeyDown" SelectedCellsChanged="myGrid_SelectedCellsChanged"
AllowDrop="True" MouseMove="DataGrid_MouseMove" PreviewMouseLeftButtonDown="DataGrid_PreviewMouseLeftButtonDown" Drop="DataGridView_Drop">
如上所述,这些方法是根据教程实现的。我尝试在事件处理程序中使用e.Handled=false
,但它没有帮助(因为打开组合框不是一个事件,它可能无用吗?)
通过一次删除一个事件处理程序至少我发现MouseMove事件是问题,代码如下:
void DataGrid_MouseMove(object sender, MouseEventArgs e)
{
if (e.LeftButton == MouseButtonState.Pressed) {
Console.Out.WriteLine("MouseButtonState.Pressed");
DataGrid dataGrid = sender as DataGrid;
prevRowIndex = GetDataGridItemCurrentRowIndex(dataGrid, e.GetPosition);
if (prevRowIndex < 0) { return;}
dataGrid.SelectedIndex = prevRowIndex;
DefaultValue selectedDV = dataGrid.Items[prevRowIndex] as DefaultValue;
if (selectedDV == null) { return; }
DragDropEffects dragDropEffects = DragDropEffects.Move;
if (DragDrop.DoDragDrop(dataGrid, selectedDV, dragDropEffects) != DragDropEffects.None)
{
dataGrid.SelectedItem = selectedDV;
}
}
}
我不完全理解为什么会这样,因为我没有真正移动鼠标,我只是点击包含组合框的单元格。是否有可能同时拥有Drag&amp; Drop和ComboBoxes?
编辑:我从the tutorial修改了项目,我曾经说过我遇到的问题:Download from my dropbox 我将Salary列更改为组合框(当然也添加了分组,因为我认为它可能很重要)
答案 0 :(得分:0)
首先,问题是什么。
即使单击鼠标而没有移动,MouseMove事件也会被触发。快速搜索告诉我这是一种有意的行为。
然后datagrid会尝试将单击的单元格置于编辑模式,但鼠标移动事件代码会调用DragDrop.DoDragDrop
来阻止组合框出现。
我建议的解决方法是执行以下操作:
在MainWindow中定义:
Point mousePositionOnButtonPress;
double deltaToStartDrag = 10;
并将MouseMove事件修改为以下内容:
if (e.LeftButton == MouseButtonState.Pressed)
{
var position = e.GetPosition(this);
if (mousePositionOnButtonPress == new Point())
{
mousePositionOnButtonPress = new Point(position.X, position.Y);
}
else
if (Math.Abs(mousePositionOnButtonPress.X - position.X) > deltaToStartDrag || Math.Abs(mousePositionOnButtonPress.Y - position.Y) > deltaToStartDrag)
{
Console.Out.WriteLine("MouseButtonState.Pressed");
DataGrid dataGrid = sender as DataGrid;
prevRowIndex = GetDataGridItemCurrentRowIndex(dataGrid, e.GetPosition);
if (prevRowIndex < 0) { return; }
dataGrid.SelectedIndex = prevRowIndex;
Employee selectedDV = dataGrid.Items[prevRowIndex] as Employee;
if (selectedDV == null) { return; }
DragDropEffects dragDropEffects = DragDropEffects.Move;
if (DragDrop.DoDragDrop(dataGrid, selectedDV, dragDropEffects) != DragDropEffects.None)
{
dataGrid.SelectedItem = selectedDV;
}
}
//
}
还订阅了DataGrid的MouseUp事件,如下所示
private void dgEmployee_MouseUp(object sender, MouseButtonEventArgs e)
{
mousePositionOnButtonPress = new Point();
}
这将推迟拖放的开始,直到用户将鼠标按下最多10个像素。
这就是我对你的问题所说的话。 我还建议你看一下这篇文章http://www.hardcodet.net/2009/03/moving-data-grid-rows-using-drag-and-drop IMO它有更清晰的代码,它看起来更好。 我相信通过一些调整,你可以让它与团队合作。