You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Functional Recommendations
Is there a ctrl+drag that allows copy insertion? I think this would be helpful for separate object manipulation, for example to help chapter catalogs to be built through existing templates
The text was updated successfully, but these errors were encountered:
First of all thanks for the existence of such a great plugin.
I get conflicts with the program when I write the following code:
Private Shared Sub StartDragDrop(row As DataGridRow)
If row IsNot Nothing Then
SetIsDragging(row, True)
If Keyboard.IsKeyDown(Key.LeftCtrl) OrElse Keyboard.IsKeyDown(Key.RightShift) Then
' Hold Ctrl to drag and drop as copy and add the
DragDrop.DoDragDrop(row, row.Item, DragDropEffects.Copy)
End If
End If
End Sub
Functional Recommendations
Is there a ctrl+drag that allows copy insertion? I think this would be helpful for separate object manipulation, for example to help chapter catalogs to be built through existing templates
The text was updated successfully, but these errors were encountered: