第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

將文本包裹在 Button 內

將文本包裹在 Button 內

猛跑小豬 2022-05-21 20:49:24
我在嘗試做似乎很容易的事情時遇到了問題。在 java/swt 中編碼 UI,我試圖在兩行上顯示按鈕的文本(包裝傳遞給按鈕的字符串),但我無法通過字符串中的回車來做到這一點,也不使用按鈕的 SWT.WRAP 樣式。這是我的代碼示例:Button myButton = new Button(compoCentre, SWT.WRAP);myButton.setBounds(40, 200, 240, 40);myButton.setText("A long text, but not so long, just enough);但是,這會導致文本顯示在一行上,隱藏不適合按鈕大小的部分。有什么想法/解決方法嗎?感謝您的時間。
查看完整描述

1 回答

?
SMILET

TA貢獻1796條經驗 獲得超4個贊

查看以下代碼:


public class Sample {

    public static void main(String[] args) {

        Display display = new Display();

        Shell shell = new Shell(display);

        shell.setLayout(new GridLayout(1, false));


        Composite comp = new Composite(shell, SWT.NONE);

        comp.setLayout(new GridLayout(1, false));

        comp.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));


        Button testButton = new Button(comp, SWT.PUSH | SWT.WRAP);

        testButton.setText("A long text, but not so long, just enough");

        final GridData layoutData = new GridData(SWT.FILL, SWT.FILL, true, true);

        layoutData.widthHint = 100;

        testButton.setLayoutData(layoutData);


        shell.pack();

        shell.open();

        while (!shell.isDisposed()) {

            if (!display.readAndDispatch()) {

                display.sleep();

            }

        }

        display.dispose();

    }

}

Windows 10 上的輸出:

http://img1.sycdn.imooc.com//6288dfee00019ee905610150.jpg

http://img1.sycdn.imooc.com//6288dff60001ea0701730140.jpg

查看完整回答
反對 回復 2022-05-21
  • 1 回答
  • 0 關注
  • 155 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號