Skip to content

DOCINFRA-2341_merged_using_automation #426

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Nov 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 22 additions & 6 deletions wpf/Diagram/Interaction/Keyboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,38 @@ The following table illustrates list of Commands with key Gesture.
| Ctrl + Y | Redo | Redo(Restores the last editing action when no other actions have occurred since the last undo on diagram). |
| Ctrl + D | Duplicate | Copies the selected element from the diagram and pastes the copied element into the diagram. |
| Delete | Delete | Delete the selected elements in the diagram. |
| LeftArrow | MoveLeft | MoveLeft (move the selected elements towards left by one pixel). |
| RightArrow | MoveRight | MoveRight (move the selected elements towards right by one pixel). |
| UpArrow | MoveUp | MoveUp (move the selected elements towards up by one pixel). |
| DownArrow | MoveDown | MoveDown (move the selected elements towards up by one pixel). |
| LeftArrow | MoveLeft | MoveLeft (move the selected elements towards the left by one pixel). |
| Shift + LeftArrow | MoveLeft | MoveLeft (move the selected elements towards the left by ten pixels). |
| RightArrow | MoveRight | MoveRight (move the selected elements towards the right by one pixel). |
| Shift + RightArrow | MoveRight | MoveRight (move the selected elements towards the right by ten pixels). |
| UpArrow | MoveUp | MoveUp (move the selected elements upwards by one pixel). |
| Shift + UpArrow | MoveUp | MoveUp (move the selected elements upwards by ten pixels). |
| DownArrow | MoveDown | MoveDown (move the selected elements downwards by one pixel). |
| Shift + DownArrow | MoveDown | MoveDown (move the selected elements downwards by ten pixels). |
| MouseScroll | Zoom | Scrolls the diagram page up and down in a vertical direction. |
| Shift + MouseScroll | Zoom | Scrolls the diagram page left and right in a horizontal direction. |
| Ctrl + MouseScroll | Zoom | Zoom(Zoom in/Zoom out the diagram). |
| Ctrl + G | Group | Grouping the element in the diagram. |
| Ctrl + Shift + U | UnGroup | UnGrouping the element in the diagram. |
| Ctrl + Shift + B | SendToBack | Moves the selected element behind all the other overlapped elements. |
| Ctrl + [ | SendBackward | Moves the selected element behind the underlying element. |
| Ctrl + Shift + F | BringToFront | Brings the selected element to front over all the other overlapped elements. |
| Ctrl + ] | BringForward | Moves the selected element over the nearest overlapping element. |
| Ctrl + |Zoom | Zoom in the diagram. |
| Ctrl - | Zoom | Zoom out the diagram. |
| Ctrl + PlusKey(+)|Zoom | Zoom in the diagram. |
| Ctrl + MinusKey(-)| Zoom | Zoom out the diagram. |
| Ctrl + 0 (number 0) | Reset | To reset horizontal Offset, vertical Offset, and zoom level of the Diagram. |
| Ctrl + Shift + W | FitToPage | Fit the diagram content into the view with respect to either width, height, or at the whole. |
| F2 | EditAnnotation | Enable annotation editing mode of the first selected diagram element. |
| Enter | SelectFocusedItem | Selects the focused item. |
| Tab | FocusToNextItem | Focus on the item next to the selected item. |
| Shift + Tab | FocusToPreviousItem | Focus on the item previous to the selected item. |
| Ctrl + R | RotateRight | Rotates the selected node clockwise to 90 degrees. |
| Ctrl + L | RotateLeft | Rotates the selected node anticlockwise to 90 degrees. |
| Ctrl + H | HorizontalFlip | Flips the selected node in a horizontal direction. |
| Ctrl + J | VerticalFlip | Flips the selected node in a vertical direction. |
| Ctrl + B | ToggleBold | Adds and removes the Bold text style to the annotation. |
| Ctrl + I | ToggleItalic | Adds and removes the Italic text style to the annotation. |
| Ctrl + U | ToggleUnderline | Adds and removes the Underline text style to the annotation. |
| Ctrl + 1 | Pointer Tool | To select, move or resize the elements in the diagram. |
| Ctrl + 2 | Text Tool | To draw a text node. |
| Ctrl + 3 | Connector Tool | To draw a orthogonal connector. |
Expand Down