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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何將 JMenuBar 添加到 JTextArea?

如何將 JMenuBar 添加到 JTextArea?

達(dá)令說(shuō) 2023-07-13 13:52:10
我有一個(gè)JTextArea,我想JMenuBar在其中添加一個(gè),但似乎不起作用。ta = new JTextArea();ta.setBackground(Color.RED);// ta.setLayout(null); I tried with a null layout and                        non-nullpane = new JScrollPane(ta);pane.setBounds(Main.WIDTH - (Main.WIDTH - 20), Main.HEIGHT - (Main.HEIGHT - 20), Main.WIDTH - 60, Main.HEIGHT - 500);bar = new JMenuBar();bar.setBounds(0, 0, ta.getWidth(), 20); // This won't be there if                                         // there is a non-null layout.ta.add(bar); // I also tried pane.add(bar); that didn't work either.有什么辦法可以添加JMenuBar嗎JTextArea?
查看完整描述

1 回答

?
嚕嚕噠

TA貢獻(xiàn)1784條經(jīng)驗(yàn) 獲得超7個(gè)贊

  1. 將 JTextArea 放入 JScrollPane ——始終

  2. 將 JScrollPane 添加到使用 BorderLayout 的 JPanel 的 BorderLayout.CENTER 位置

  3. 使用 JPanel 將 JMenuBar 添加到同一 BorderLayout 的 BorderLayout.PAGE_START 位置

完畢

例如。,

JTextArea ta = new JTextArea(40, 20); // give columns and rows

JScrollPane scrollPane = new JScrollPane(ta);


JPanel borderLayoutPanel = new JPanel(new BorderLayout());

borderLayoutPanel.add(scrollPane, BorderLayout.CENTER);


JMenuBar menuBar = new JMenuBar();

// add menu's to the menu bar here


borderLayoutPanel.add(menuBar, BorderLayout.PAGE_START);

旁注:

  • 您調(diào)用的代碼ta.getWidth()可能會(huì)返回寬度值 0,因?yàn)樗坪跏窃诔尸F(xiàn) JTextArea之前調(diào)用的。

  • 您幾乎永遠(yuǎn)不想將組件直接添加到 JTextArea 本身,因?yàn)檫@可能會(huì)干擾文本區(qū)域的功能。


查看完整回答
反對(duì) 回復(fù) 2023-07-13
  • 1 回答
  • 0 關(guān)注
  • 133 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)