TornadoFX:允许将项目从列表视图复制到剪贴板

时间:2017-08-24 19:38:53

标签: kotlin copy-paste tornadofx

当选择列表视图中的项目时,我希望用户能够将内容复制到剪贴板。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:2)

您可以像这样添加视图的快捷方式

shortcut(KeyCombination.valueOf("Ctrl+C")) {
    // Convert the selected item as you see fit and add it to the clipboard
    // For example:
    clipboard.put(MyCustomFormat, listview.selectedItem)
}