我在SWT Gui中使用带有图像的按钮,并且我不得不禁用它们。
这让SWT从我之前放在按钮上的彩色图像中创建一个自动禁用的图像,并且禁用的图标实际上看起来并不漂亮。我想在按钮上放置我自己的禁用图像,但我找不到办法做到这一点。
有吗?
答案 0 :(得分:1)
您不能将Button子类化,因此您需要在启用/禁用按钮时执行此操作。我找不到SWT - > Windows事件映射ID,用于调用按钮上的addListener
以使其更通用。
public static void main(String[] args) throws Exception
{
Display display = new Display();
Shell shell = new Shell(display);
shell.setLayout(new GridLayout(1, true));
final Image image1 = new Image(null, new FileInputStream(
"C:\\tmp\\enabled.png"));
final Image image2 = new Image(null, new FileInputStream(
"C:\\tmp\\disabled.png"));
final Button button= new Button(shell, SWT.NONE);
button.setText("Hello World SWT");
button.setImage(image1);
button.pack();
final Button cb = new Button(shell, SWT.CHECK);
cb.setText("Check me");
cb.addSelectionListener(new SelectionAdapter()
{
@Override
public void widgetSelected(SelectionEvent event)
{
button.setEnabled(!cb.getSelection());
if (button.isEnabled())
button.setImage(image1);
else
button.setImage(image2);
}
});
shell.pack();
shell.open();
while (!shell.isDisposed())
{
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
答案 1 :(得分:0)
另一个提示可能会或可能不会给您带来很多麻烦。确保图像上的alpha级别对于透明部分一直变为零,特别是在边缘附近,标准的默认禁用外观可能看起来好多了。
答案 2 :(得分:0)
我通过修改Button类本身修复了我的问题。它现在缓存禁用的图像,并在需要时重新使用它们。