簡體   English   中英

從JOptionPane刪除標題欄

[英]Remove the title bar from JOptionPane

有什么方法可以從JOptionPane刪除標題欄?

我需要創建一個沒有選項標題欄的選項窗格。

您必須使用JOptionPane嗎?

您也可以使用J(Internal)Frame或沒有窗口裝飾的啟動畫面!

JInternalFrame inFrame = new JInternalFrame();  
BasicInternalFrameTitlePane titlePane =  
      (BasicInternalFrameTitlePane) ((BasicInternalFrameUI) inFrame.getUI()).  
      getNorthPane();  
inFrame.remove(titlePane);  

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM