1

我正在尝试在 draw2d 中设置连接线的宽度和颜色。我找到了“setLineWidth()”方法,但是我需要调用这个方法。我在输入端口对象上调用此方法但没有工作。请帮助我。

4

1 回答 1

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);
于 2012-07-13T16:07:53.897 回答