視窗邊框定位和不可調整大小的視窗
在Java Swing 應用程式中,建立不可調整大小的JFrame 時,setLocation 方法可能無法正確使用如果啟用了Windows Aero,請考慮視窗邊框。這會導致並排放置視窗時視窗邊框重疊。
請考慮以下程式碼:
import java.awt.Rectangle; import javax.swing.JFrame; public class WindowBorders { public static void main(String[] args) { JFrame frame1 = new JFrame("frame 1"); JFrame frame2 = new JFrame("frame 2"); frame1.setResizable(false); frame2.setResizable(false); frame1.setVisible(true); Rectangle bounds = frame1.getBounds(); frame2.setLocation(bounds.x + bounds.width, bounds.y); frame2.setVisible(true); } }
使用 Windows Aero 時,frame2 的邊框會與frame1 的邊框重疊。但是,如果停用 Windows Aero 或將框架設定為可調整大小,則定位將如預期運作。
要了解此問題,請考慮作業系統如何處理不可調整大小的容器。當視窗無法調整大小時,作業系統將決定視窗內容和邊框所需的最小尺寸。然後強制執行這個最小尺寸,而且視窗不能再變小。
在我們的程式碼中,出現問題是因為當我們使用 setLocation 方法設定frame2的位置時,我們指定了視窗的位置內容,而不是視窗的邊框。這意味著沒有考慮到frame2的邊框,從而導致邊框重疊。
要解決此問題,我們可以調整frame2的位置以考慮其邊框。一種方法是從所需的 X 座標中減去邊框寬度:
frame2.setLocation(bounds.x + bounds.width - frame2.getInsets().right, bounds.y);
這可確保正確考慮第 2 幀的邊框,並且兩個視窗並排放置而不會重疊邊框。
以上是為什麼在啟用 Windows Aero 的 Java Swing 中並排放置不可調整大小的 JFrame 時會重疊?的詳細內容。更多資訊請關注PHP中文網其他相關文章!