Java SWT 库在 Windows 10 中的糟糕布局

标签 java windows user-interface swt windowbuilder

我使用 GUI 的 SWT 库开发了一个桌面应用程序。 在 Windows 7 上运行该应用程序运行良好,布局干净。 我尝试在 Windows 10 上运行相同的应用程序,但结果是一场灾难! 字体巨大, window 被切开,太可怕了!

我禁用了显示缩放并在 View 选项中设置了 100%,但什么也没有,问题仍然存在。 我该如何解决这个问题?

感谢那些愿意帮助我的人。

java,
Snippet:

import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Text;
import org.eclipse.swt.widgets.Button;
import org.eclipse.wb.swt.SWTResourceManager;

public class mySWTApp extends Shell {
	private Text txt_name;
	private Text txt_surname;

	/**
	 * Launch the application.
	 * @param args
	 */
	public static void main(String args[]) {
		try {
			Display display = Display.getDefault();
			mySWTApp shell = new mySWTApp(display);
			shell.open();
			shell.layout();
			while (!shell.isDisposed()) {
				if (!display.readAndDispatch()) {
					display.sleep();
				}
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	/**
	 * Create the shell.
	 * @param display
	 */
	public mySWTApp(Display display) {
		super(display, SWT.SHELL_TRIM);
		setBackground(SWTResourceManager.getColor(SWT.COLOR_TITLE_BACKGROUND_GRADIENT));
		setBackgroundMode(SWT.INHERIT_DEFAULT);
		setLayout(new GridLayout(1, false));
		
		Composite composite = new Composite(this, SWT.BORDER);
		composite.setBackground(SWTResourceManager.getColor(SWT.COLOR_TITLE_BACKGROUND_GRADIENT));
		composite.setFont(SWTResourceManager.getFont("Tahoma", 9, SWT.NORMAL));
		composite.setLayout(new GridLayout(2, false));
		composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
		
		Label lblNewLabel = new Label(composite, SWT.NONE);
		lblNewLabel.setFont(SWTResourceManager.getFont("Tahoma", 9, SWT.NORMAL));
		lblNewLabel.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1));
		lblNewLabel.setText("Name");
		
		txt_name = new Text(composite, SWT.BORDER);
		txt_name.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
		
		Label lblNewLabel_1 = new Label(composite, SWT.NONE);
		lblNewLabel_1.setFont(SWTResourceManager.getFont("Tahoma", 9, SWT.NORMAL));
		lblNewLabel_1.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1));
		lblNewLabel_1.setText("Surname");
		
		txt_surname = new Text(composite, SWT.BORDER);
		txt_surname.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
		
		Button btn_add = new Button(composite, SWT.NONE);
		btn_add.setFont(SWTResourceManager.getFont("Tahoma", 9, SWT.NORMAL));
		GridData gd_btn_add = new GridData(SWT.CENTER, SWT.CENTER, false, false, 2, 1);
		gd_btn_add.widthHint = 126;
		btn_add.setLayoutData(gd_btn_add);
		btn_add.setText("Insert");
		createContents();
	}

	/**
	 * Create contents of the shell.
	 */
	protected void createContents() {
		setText("Basic Name");
		setSize(450, 135);

	}

	@Override
	protected void checkSubclass() {
		// Disable the check that prevents subclassing of SWT components
	}
}

最佳答案

我最近遇到了这个问题,并认为这与 Windows 10 有关。一些研究表明,实际原因是 Windows 10 附带的新 PC 的分辨率更高!有一个非常简单的解决方案描述于 Perfectmobile community: Solution for eclipse with high resolution laptops 。 我按照描述进行操作,确保更改下载的 list 文件的名称以匹配我的应用程序的名称,并且它工作得很好! 有用的信息也可以在这个Slideshow about scaling SWT on high-resolution screens中找到。关于如何使您的应用程序 dpiAware

关于Java SWT 库在 Windows 10 中的糟糕布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38549118/

相关文章:

java - Neo4j - 从给定标签开始遍历新 API 中的节点

java - 在什么情况下,c 的 write() 函数写入的数据可能少于请求的数据?

windows - OpenGL -> wglCreateContext,WndProc 的 WM_CREATE 中的 wglMakeCurrent 使渲染失败

python - 在 Windows 8.1 上安装 lxml、libxml2、libxslt

python - Py2exe、Tkinter 和安装文件有问题吗?

c# - 通过 java 运行 .net 控制台时为 "The handle is invalid"

Java重力错误

c++ - Qt - 如何减小 "bundled"的大小?

c++ - 我的程序有一个保存配置文件的GUI,如何双击该配置文件直接用配置数据加载GUI?

.net - 性能关键的 GUI 应用程序(windows、linux)