我正在尝试在draw2d中设置连接线的宽度和颜色。 我找到了方法“setLineWidth()”方法,但我需要调用此方法。我在输入端口对象上调用此方法但不起作用。 Plz帮助我。
答案 0 :(得分:1)
你能发一些代码吗?这对我有用:
PolylineConnection connection = new PolylineConnection();
connection.setLineWidth(2);
connection.setSourceAnchor(new ChannelStartAnchor(this));
connection.setTargetAnchor(new ChannelEndAnchor(figure));
Display display = Display.getCurrent();
final Color connectionColorHoover = display.getSystemColor(SWT.COLOR_RED);
final Color connectionColor = new Color(display,54,82,111);
connection.setBackgroundColor(connectionColor);
connection.setForegroundColor(connectionColor);