java框選虛線矩形

java框選虛線矩形

ID:39551590

大小:61.50 KB

頁數(shù):6頁

時(shí)間:2019-07-06

java框選虛線矩形_第1頁
java框選虛線矩形_第2頁
java框選虛線矩形_第3頁
java框選虛線矩形_第4頁
java框選虛線矩形_第5頁
資源描述:

《java框選虛線矩形》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。

1、代碼:DragDao.javaimportjava.awt.BasicStroke;importjava.awt.Color;importjava.awt.Graphics;importjava.awt.Graphics2D;importjava.awt.Point;importjava.awt.Stroke;importjava.awt.event.MouseEvent;importjava.awt.event.MouseListener;importjava.awt.event.MouseMotionListener;importjavax.s

2、wing.JPanel;publicclassDragDaoextendsJPanelimplementsMouseMotionListener,MouseListener{/****/privatestaticfinallongserialVersionUID=1L;/**矩形的起點(diǎn)左上角**/privatePointrectStart=null;/**矩形的終點(diǎn)右下角**/privatePointrectStop=null;/**是否繪制虛線矩形**/privatebooleandottedTag=true;publicDragDao(){th

3、is.setBackground(Color.WHITE);//this.setOpaque(false);this.setSize(1000,1000);rectStart=newPoint(0,0);rectStop=newPoint(0,0);//this.addMouseListener(this);//this.addMouseMotionListener(this);this.addMouseListener(ma_imgpanel);this.addMouseMotionListener(mma);}MouseMotionListen

4、ermma=newMouseMotionListener(){@OverridepublicvoidmouseMoved(MouseEvente){//TODOAuto-generatedmethodstub}@OverridepublicvoidmouseDragged(MouseEvente){rectStop=e.getPoint();repaint();}};MouseListenerma_imgpanel=newMouseListener(){@OverridepublicvoidmouseReleased(MouseEvente){do

5、ttedTag=true;repaint();}@OverridepublicvoidmousePressed(MouseEvente){/**設(shè)置可以進(jìn)行繪制**/dottedTag=true;/**記錄起始點(diǎn)**/rectStart=e.getPoint();/**記錄起終點(diǎn)**/rectStop=rectStart;}@OverridepublicvoidmouseExited(MouseEvente){//TODOAuto-generatedmethodstub}@OverridepublicvoidmouseEntered(MouseEv

6、ente){//TODOAuto-generatedmethodstub}@OverridepublicvoidmouseClicked(MouseEvente){//TODOAuto-generatedmethodstub}};@OverrideprotectedvoidpaintComponent(Graphicsg){//TODOAuto-generatedmethodstubsuper.paintComponent(g);Graphics2Dg2=(Graphics2D)g;/**矩形的寬度**/intw=Math.abs(rectStop

7、.x-rectStart.x);/**矩形的高度**/inth=Math.abs(rectStop.y-rectStart.y);/**起點(diǎn)終點(diǎn)的最小值作為起點(diǎn)**/Pointmin=newPoint(0,0);min.x=Math.min(rectStop.x,rectStart.x);min.y=Math.min(rectStop.y,rectStart.y);/**起點(diǎn)終點(diǎn)的最小值作為終點(diǎn)**/Pointmax=newPoint(0,0);max.x=Math.max(rectStop.x,rectStart.x);max.y=Math.ma

8、x(rectStop.y,rectStart.y);/**如果是繪制虛線矩形**/if(dottedTag){/**new

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動(dòng)畫的文件,查看預(yù)覽時(shí)可能會(huì)顯示錯(cuò)亂或異常,文件下載后無此問題,請(qǐng)放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對(duì)本文檔版權(quán)有爭議請(qǐng)及時(shí)聯(lián)系客服。
3. 下載前請(qǐng)仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時(shí)可能由于網(wǎng)絡(luò)波動(dòng)等原因無法下載或下載錯(cuò)誤,付費(fèi)完成后未能成功下載的用戶請(qǐng)聯(lián)系客服處理。