我想知道是否可以构建一个Text
并靠近Text
a Button
,当我按下它时,它会打开一个新窗口以从我的计算机中选择一个文件(如浏览按钮)。
是否可以在 SWT 中做到这一点?你有什么例子吗?
只需使用 aFileDialog
选择文件并将结果保存在Text
. 使用Button
withListener
来SWT.Selection
打开FileDialog
:
public static void main(String[] args)
{
Display display = Display.getDefault();
final Shell shell = new Shell(display);
shell.setText("StackOverflow");
shell.setLayout(new FillLayout(SWT.VERTICAL));
final Text path = new Text(shell, SWT.BORDER);
Button fileChooser = new Button(shell, SWT.PUSH);
fileChooser.setText("Browse...");
fileChooser.addListener(SWT.Selection, new Listener()
{
@Override
public void handleEvent(Event arg0)
{
FileDialog dialog = new FileDialog(shell);
String filePath = dialog.open();
if(filePath != null)
path.setText(filePath);
}
});
shell.pack();
Point size = shell.computeSize(SWT.DEFAULT, SWT.DEFAULT);
shell.setSize(400, size.y);
shell.open();
while (!shell.isDisposed())
{
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}