Changeset 3694 for trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization
- Timestamp:
- 05/07/10 04:45:45 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphView.cs
r3566 r3694 225 225 Type type = e.Data.GetData("Type") as Type; 226 226 if (!ReadOnly && (type != null) && (typeof(IOperator).IsAssignableFrom(type))) { 227 if ((e.KeyState & 8) == 8) e.Effect = DragDropEffects.Link; // CTRL key227 if ((e.KeyState & 32) == 32) e.Effect = DragDropEffects.Link; // ALT key 228 228 else if ((e.KeyState & 4) == 4) e.Effect = DragDropEffects.Move; // SHIFT key 229 229 else if ((e.AllowedEffect & DragDropEffects.Copy) == DragDropEffects.Copy) e.Effect = DragDropEffects.Copy;
Note: See TracChangeset
for help on using the changeset viewer.