Opened 10 years ago
Closed 10 years ago
#2340 closed feature request (done)
Copy & Paste from ItemListView
Reported by: | abeham | Owned by: | abeham |
---|---|---|---|
Priority: | medium | Milestone: | HeuristicLab 3.3.12 |
Component: | Core.Views | Version: | 3.3.11 |
Keywords: | Cc: |
Description
When selecting multiple entries in an ItemListView it would be nice to be able to Ctrl+C and copy the ToString() representations of that items into a newline separated string.
Change History (8)
comment:1 Changed 10 years ago by abeham
- Owner set to abeham
- Status changed from new to accepted
comment:2 Changed 10 years ago by abeham
- Owner changed from abeham to mkommend
- Status changed from accepted to reviewing
comment:3 Changed 10 years ago by mkommend
Changes in r12078 look good. The only thing I question is why the functionality is implemented in the KeyUp event handler and not in the KeyDown? Every other program I tested (excel and visual studio) use the KeyDown event and it is more difficult to release the shortcut correctly (my success rate is ca. 50%), so that the action is triggered.
comment:4 Changed 10 years ago by mkommend
- Owner changed from mkommend to abeham
comment:5 Changed 10 years ago by abeham
- Owner changed from abeham to mkommend
r12125: moved code to KeyDown event handler
comment:6 Changed 10 years ago by mkommend
Reviewed r12125. Works much better than before (success rate ~100%).
comment:7 Changed 10 years ago by mkommend
- Owner changed from mkommend to abeham
- Status changed from reviewing to readytorelease
comment:8 Changed 10 years ago by abeham
- Resolution set to done
- Status changed from readytorelease to closed
r12078: Implemented copy of item (collection|array|list) views