我有一个 EditPart,我需要更改它的位置和背景颜色。我已设法使用以下方法更改其位置:
ChangeBoundsRequest request = new ChangeBoundsRequest(RequestConstants.REQ_MOVE);
request.setEditParts(editPart);
request.setMoveDelta(newLocation);
Command cmd = editPart.getCommand(request);
if (cmd != null && cmd.canExecute()) {
cmd.execute();
}
我设法通过以下方式更改背景颜色:
editPart.getContentPane().setBackgroundColor(color);
但是每当我关闭并重新打开应用程序时,我所做的颜色更改就会消失!
我怎样才能提交背景颜色!