|
59 | 59 | </Grid.RowDefinitions> |
60 | 60 | <ToolBarTray Grid.Row="0" IsLocked="True" Background="Transparent"> |
61 | 61 | <ToolBar Height="28" Background="Transparent"> |
62 | | - <Button Command="{Binding MoveForwardCommand}"> |
| 62 | + <Button Command="{Binding MoveForwardCommand}" Focusable="False"> |
63 | 63 | <Image Source="ToolbarGraphics/BringForwardIcon.png" /> |
64 | 64 | <Button.ToolTip>Bring selected controls forward so they display on top of other controls.</Button.ToolTip> |
65 | 65 | </Button> |
66 | | - <Button Command="{Binding MoveBackCommand}"> |
| 66 | + <Button Command="{Binding MoveBackCommand}" Focusable="False"> |
67 | 67 | <Image Source="ToolbarGraphics/SendBackIcon.png" /> |
68 | 68 | <Button.ToolTip>Send selectd controls back so they display under other controls.</Button.ToolTip> |
69 | 69 | </Button> |
70 | 70 | <Separator /> |
71 | | - <Button Command="{Binding MoveForwardFullyCommand}"> |
| 71 | + <Button Command="{Binding MoveForwardFullyCommand}" Focusable="False"> |
72 | 72 | <Image Source="ToolbarGraphics/BringForwardFullyIcon.png" /> |
73 | 73 | <Button.ToolTip>Bring selected controls all the way forward so they display on top of all other controls.</Button.ToolTip> |
74 | 74 | </Button> |
75 | | - <Button Command="{Binding MoveBackFullyCommand}"> |
| 75 | + <Button Command="{Binding MoveBackFullyCommand}" Focusable="False"> |
76 | 76 | <Image Source="ToolbarGraphics/SendBackFullyIcon.png" /> |
77 | 77 | <Button.ToolTip>Send selected controls all the way back so they display under all other controls.</Button.ToolTip> |
78 | 78 | </Button> |
79 | 79 | <Separator /> |
80 | | - <Button Command="{Binding ToggleHideControlsCommand}"> |
| 80 | + <Button Command="{Binding ToggleHideControlsCommand}" Focusable="False"> |
81 | 81 | <Image Source="ToolbarGraphics/HiddenIcon.png" /> |
82 | 82 | <Button.ToolTip>Hide or Unhide selected controls.</Button.ToolTip> |
83 | 83 | </Button> |
84 | | - <Button Command="{Binding ToggleLockControlsCommand}"> |
| 84 | + <Button Command="{Binding ToggleLockControlsCommand}" Focusable="False"> |
85 | 85 | <Image Source="ToolbarGraphics/LockedIcon.png" /> |
86 | 86 | <Button.ToolTip>Lock or Unlock selected controls.</Button.ToolTip> |
87 | 87 | </Button> |
88 | | - <Button Command="{Binding LockAllControlsCommand}"> |
| 88 | + <Button Command="{Binding LockAllControlsCommand}" Focusable="False"> |
89 | 89 | <Image Source="ToolbarGraphics/LockedPlusIcon.png" /> |
90 | 90 | <Button.ToolTip>Lock all controls.</Button.ToolTip> |
91 | 91 | </Button> |
92 | | - <Button Command="{Binding UnlockAllControlsCommand}"> |
| 92 | + <Button Command="{Binding UnlockAllControlsCommand}" Focusable="False"> |
93 | 93 | <Image Source="ToolbarGraphics/UnLockedPlusIcon.png" /> |
94 | 94 | <Button.ToolTip>Unlock all controls.</Button.ToolTip> |
95 | 95 | </Button> |
96 | | - <Button Command="{Binding ToggleSnapControlsCommand}"> |
| 96 | + <Button Command="{Binding ToggleSnapControlsCommand}" Focusable="False"> |
97 | 97 | <Image Source="ToolbarGraphics/SnapIcon.png" /> |
98 | 98 | <Button.ToolTip>Enable or disable snapping to selected controls.</Button.ToolTip> |
99 | 99 | </Button> |
|
0 commit comments