扫描二维码下载沐宇APP

沐宇

微信扫码使用沐宇小程序

沐宇

java鎬庝箞璁剧疆绐椾綋涓嶅彲绉诲姩

扬州沐宇科技
2023-11-13 10:02:43
Java

鍦↗ava涓紝鍙互閫氳繃璁剧疆绐椾綋鐨剆etUndecorated鏂规硶鏉ヨ缃獥浣撲笉鍙Щ鍔ㄣ€傚叿浣撴楠ゅ涓嬶細

  1. 鍒涘缓涓€涓狫Frame瀵硅薄锛岀敤浜庤〃绀虹獥浣擄細
JFrame frame = new JFrame();
  1. 浣跨敤setUndecorated鏂规硶灏嗙獥浣撹缃负鏃犺楗扮殑绐椾綋锛?/li>
frame.setUndecorated(true);
  1. 鍦ㄧ獥浣撶殑MouseMotionListener涓坊鍔犻紶鏍囩洃鍚簨浠讹紝鐩戝惉榧犳爣鐨勬嫋鍔ㄦ搷浣滐細
frame.addMouseMotionListener(new MouseMotionAdapter() {
    public void mouseDragged(MouseEvent e) {
        // Do nothing
    }
});
  1. 杩愯绋嬪簭锛岀獥浣撳皢鏃犳硶绉诲姩銆?/li>

瀹屾暣浠g爜绀轰緥锛?/p>

import javax.swing.*;
import java.awt.event.*;

public class Main {
    public static void main(String[] args) {
        JFrame frame = new JFrame();
        frame.setUndecorated(true);
        frame.addMouseMotionListener(new MouseMotionAdapter() {
            public void mouseDragged(MouseEvent e) {
                // Do nothing
            }
        });
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(300, 200);
        frame.setVisible(true);
    }
}

扫码添加客服微信