|
11 | 11 |
|
12 | 12 | <!-- Context Menu for DataGrid Copy --> |
13 | 13 | <ContextMenu x:Key="DataGridContextMenu"> |
14 | | - <MenuItem Header="Copy Cell" Click="CopyCell_Click"/> |
15 | | - <MenuItem Header="Copy Row" Click="CopyRow_Click"/> |
16 | | - <MenuItem Header="Copy All Rows" Click="CopyAllRows_Click"/> |
17 | | - <MenuItem Header="Copy Repro Script" Click="CopyReproScript_Click"/> |
| 14 | + <MenuItem Header="Copy Cell" Click="CopyCell_Click"> |
| 15 | + <MenuItem.Icon><TextBlock Text="📋"/></MenuItem.Icon> |
| 16 | + </MenuItem> |
| 17 | + <MenuItem Header="Copy Row" Click="CopyRow_Click"> |
| 18 | + <MenuItem.Icon><TextBlock Text="📄"/></MenuItem.Icon> |
| 19 | + </MenuItem> |
| 20 | + <MenuItem Header="Copy All Rows" Click="CopyAllRows_Click"> |
| 21 | + <MenuItem.Icon><TextBlock Text="📑"/></MenuItem.Icon> |
| 22 | + </MenuItem> |
| 23 | + <MenuItem Header="Copy Repro Script" Click="CopyReproScript_Click"> |
| 24 | + <MenuItem.Icon><TextBlock Text="📝"/></MenuItem.Icon> |
| 25 | + </MenuItem> |
18 | 26 | <Separator/> |
19 | | - <MenuItem Header="Export to CSV..." Click="ExportToCsv_Click"/> |
| 27 | + <MenuItem Header="Export to CSV..." Click="ExportToCsv_Click"> |
| 28 | + <MenuItem.Icon><TextBlock Text="📊"/></MenuItem.Icon> |
| 29 | + </MenuItem> |
20 | 30 | <Separator/> |
21 | | - <MenuItem Header="View Plan" Click="ViewEstimatedPlan_Click"/> |
22 | | - <MenuItem Header="Get Actual Plan" Click="GetActualPlan_Click"/> |
| 31 | + <MenuItem Header="View Plan" Click="ViewEstimatedPlan_Click"> |
| 32 | + <MenuItem.Icon><TextBlock Text="🔍"/></MenuItem.Icon> |
| 33 | + </MenuItem> |
| 34 | + <MenuItem Header="Get Actual Plan" Click="GetActualPlan_Click"> |
| 35 | + <MenuItem.Icon><TextBlock Text="▶"/></MenuItem.Icon> |
| 36 | + </MenuItem> |
23 | 37 | </ContextMenu> |
24 | 38 |
|
25 | 39 | <Style x:Key="GridRowStyle" TargetType="DataGridRow"> |
|
0 commit comments