gpt4 book ai didi

java - 如何摆脱 Windows 7 中丑陋的 SWT 按钮条纹?

转载 作者:行者123 更新时间:2023-12-04 05:57:44 25 4
gpt4 key购买 nike

我维护了一个 SWT/JFace 必须在 中运行的应用程序Windows XP 以及 Windows 7 .
该应用程序具有 TabFolder包含 Composite ,这又包含小部件。没有什么不寻常的,一切正常,除了......

按钮

虽然它们在 Windows XP 中看起来不错,但在 Windows 7 中却有一个丑陋的灰色边框。

enter image description here
enter image description here

enter image description here

我可以手动设置按钮的背景,但我没有弄清楚
找出 parent 实际背景颜色的方法。 getBackground()即使背景实际上是白色,也始终返回 240、240、240。

我发现在 Windows XP 中 TabFolder 的背景是主题颜色 3D 对象 而在 Windows 7 中则没有这样的对应关系。我试图设置每一个
主题颜色为鲜红色,但 TabFolder 背景颜色不受影响。

所以 SWT 按钮本身并没有正确设置它们的背景颜色,我认为无法通过编程找出正确的颜色。我该怎么办?

无论如何,这是重现问题的完整最小示例的代码:

import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.TabFolder;
import org.eclipse.swt.widgets.TabItem;

public class TabTest {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);

TabFolder tabFolder = new TabFolder (shell, SWT.NONE);
TabItem item = new TabItem (tabFolder, SWT.NULL);
item.setText ("Tab Item");

Composite comp = new Composite(tabFolder, SWT.NONE);
comp.setLayout(new RowLayout());
item.setControl(comp);

Button button = new Button(comp, SWT.PUSH);
button.setText("Button ");
tabFolder.setSize (160, 100);

//Event Loop
shell.pack ();
shell.open ();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}

最佳答案

它看起来更像是一个平台问题而不是一个 SWT 问题。虽然不相关但是有平台specific bugsetBackground()TabFolder ,它可能与您当前的问题有关,也可能无关。

解决方法 是使用 CTabFolder .请参阅以下代码段和输出:

Output on Windows 7, using JDK 1.6_b30, Eclipse 3.7

enter image description here

Code:

import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.CTabFolder;
import org.eclipse.swt.custom.CTabItem;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.TabFolder;
import org.eclipse.swt.widgets.TabItem;

public class TabTest
{
public static void main(String[] args)
{
Display display = new Display();
Shell shell = new Shell(display);
shell.setLayout(new GridLayout());
shell.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

CTabFolder tabFolder = new CTabFolder (shell, SWT.BORDER|SWT.FLAT);
tabFolder.setLayout(new GridLayout());
tabFolder.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

CTabItem item = new CTabItem(tabFolder, SWT.NULL);
item.setText ("Tab Item");

Composite comp = new Composite(tabFolder, SWT.NONE);
comp.setLayout(new GridLayout());
comp.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
item.setControl(comp);

Button button = new Button(comp, SWT.PUSH);
button.setText("Button ");
tabFolder.setSize (160, 100);

item = new CTabItem(tabFolder, SWT.NULL);
item.setText ("Tab Item");

//Event Loop
shell.pack ();
shell.open ();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}

关于java - 如何摆脱 Windows 7 中丑陋的 SWT 按钮条纹?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9316522/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com