好像 SWT在 windows下根本不能改变按钮的颜色! 以下代码根本不起作用! 没人注意过这个问题吗?? final Button sendButton = new Button(clientGroup, SWT.BORDER);
        sendButton.setText("发送!");
sendButton.setForeground(Display.getCurrent().getSystemColor(SWT.COLOR_DARK_CYAN));sendButton.setForeground(Display.getCurrent().getSystemColor(SWT.COLOR_DARK_CYAN));
是一个很小的问题,但是在项目中对需求的影响很大! 大家都是怎么解决的?? 不希望继承Button类,有什么好办法吗