pasteAction = new Action() {
public void run()
{
resultInput.paste(); 很多控件都有paste方法哦
}
};
pasteAction.setText("Paste");
pasteAction.setImageDescriptor(getSite().getWorkbenchWindow().getWorkbench().getSharedImages().getImageDescriptor(ISharedImages.IMG_TOOL_PASTE));
getViewSite().getActionBars().setGlobalActionHandler(ActionFactory.PASTE.getId(), pasteAction);
這樣就能讓系統剪切版里面的東西粘貼到Text里面了
該死的網上那些都是用在Editor的Action。
關鍵問題,還得我自己琢磨。
posted on 2008-05-28 15:42
北國狼人的BloG 閱讀(1158)
評論(1) 編輯 收藏