|
9 | 9 | MinWidth="200" MinHeight="200" |
10 | 10 | Width="800" Height="550" |
11 | 11 | Icon="Assets/MessageCommunicator.ico" |
12 | | - ExtendClientAreaToDecorationsHint="True" |
| 12 | + ExtendClientAreaToDecorationsHint="False" |
13 | 13 | Title="MessageCommunicator"> |
14 | 14 | <local:MainWindowFrame x:Name="CtrlWindowFrame" |
15 | 15 | Status="{Binding Path=StatusBarState}"> |
|
65 | 65 | Header="Profiles" |
66 | 66 | Classes="GroupBox"> |
67 | 67 | <DockPanel LastChildFill="True"> |
68 | | - |
69 | 68 | <Menu DockPanel.Dock="Top"> |
70 | 69 | <MenuItem ToolTip.Tip="Create new profile" |
71 | 70 | Header="{local:VectorIconExtension Icon={StaticResource ResourceKey=IconCreate}}" |
|
101 | 100 | Icon="{local:VectorIconExtension Icon={StaticResource ResourceKey=IconStop}}" |
102 | 101 | IsEnabled="{Binding Path=#LstProfiles.SelectedItem.CanStop}" |
103 | 102 | Command="{Binding Path=#LstProfiles.SelectedItem.Command_Stop}" /> |
| 103 | + <Separator Classes="Horizontal" /> |
| 104 | + |
| 105 | + <MenuItem Header="Create profile" |
| 106 | + Icon="{local:VectorIconExtension Icon={StaticResource ResourceKey=IconCreate}}" |
| 107 | + Command="{Binding Path=Command_CreateProfile}" /> |
| 108 | + <MenuItem Header="Edit profile" |
| 109 | + Icon="{local:VectorIconExtension Icon={StaticResource ResourceKey=IconEdit}}" |
| 110 | + IsEnabled="{Binding Path=IsProfileSelected}" |
| 111 | + Command="{Binding Path=Command_EditProfile}" /> |
| 112 | + <MenuItem Header="Remove profile" |
| 113 | + Icon="{local:VectorIconExtension Icon={StaticResource ResourceKey=IconRemove}}" |
| 114 | + IsEnabled="{Binding Path=IsProfileSelected}" |
| 115 | + Command="{Binding Path=Command_DeleteProfile}" /> |
104 | 116 | </ContextMenu> |
105 | 117 | </DataGrid.ContextMenu> |
106 | 118 |
|
|
0 commit comments