1

此 SWT 程序有一个名为 mBuy 的组,其中包括用于输入股票买入价格的文本字段。按下计算按钮并激活事件侦听器后,我想将此文本字段中的任何内容分配给我已在此处初始化的变量。

final Text tmp0 = new Text(mBuy, SWT.SINGLE);
tmp0.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

// Calculate Button
Button tmp3 = new Button(mBuy, SWT.PUSH);
tmp3.setText("Calculate");
tmp3.setLayoutData(new GridData(SWT.FILL, SWT.FILL, false, true));

// if calculate button is pressed
tmp3.addSelectionListener(new SelectionAdapter() {
    public void widgetSelected(SelectionEvent e) {
        //take the decimal value inside textbox 
        bPrice=Double.parseDouble(tmp0.getText());
        // don't show buy menu anymore
        mBuy.dispose();

    }
});
4

1 回答 1

3

只是tmp0.getText()。您应该查看SWT 的 Javadocs

于 2013-02-22T06:45:43.313 回答