⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dragdropmove.java

📁 我想在這邊多多探討MATLAB的軟體與程式 希望大家多多關照
💻 JAVA
字号:
/**
 * 菲公╈Σㄆン
 */
import java.awt.*;
import java.awt.event.*;

public class DragDropMove extends Frame implements
    MouseListener,MouseMotionListener 
{
	
	int x = 0,y = 0;
	int sx,sy,ex,ey;
	int flag;
	
	public DragDropMove() {
		
		setLayout(null);
		addMouseListener(this);
		addMouseMotionListener(this);
		setBounds(10,10,400,400);
		setResizable(false);
		
		addWindowListener(new WindowAdapter() {
			public void windowClosing(WindowEvent e)
			{
				System.exit(0);
			}});

		show();
	}
	
		public static void main(String args[]) {
	
		new DragDropMove();
	}

	// 菲公

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -