資源簡介
這是一個用Java實現的windows繪圖板
其功能和Windows自帶的繪圖板類似用法也類似
軟件所用到的軟件在撤銷和恢復部分沒有實現其他的功能實現的還算不錯,所有的代碼和設計思想都是本人原創,沒有任何版權的問題請大家放心使用。
代碼片段和文件信息
package?lfq.draw;
import?java.awt.Color;
import?java.awt.Graphics;
import?java.awt.GridLayout;
import?java.awt.event.MouseAdapter;
import?java.awt.event.MouseEvent;
import?javax.swing.BorderFactory;
import?javax.swing.ImageIcon;
import?javax.swing.JColorChooser;
import?javax.swing.Jframe;
import?javax.swing.JLabel;
import?javax.swing.JPanel;
import?javax.swing.border.Border;
import?lfq.tools.Tool;
@SuppressWarnings(“serial“)
public?class?ColorPanel?extends?JPanel?{
//設置顏色面板的邊框
private?Border?border?=?BorderFactory.createEtchedBorder();
//當前顏色的面板顯示
private?JPanel?lineColorPane=new?JPanel();
//當前填充顏色的面板
private?JPanel?fillColorPane=new?JPanel();
private?JPanel?linePane=new?JPanel();
private?JPanel?fillPane=new?JPanel();
private?MouseAdapter?
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????1217??2009-06-19?19:11??123\lfq\draw\ColorPanel$1.class
?????文件???????1257??2009-06-19?19:11??123\lfq\draw\ColorPanel$2.class
?????文件????????923??2009-06-19?19:11??123\lfq\draw\ColorPanel$3.class
?????文件???????1386??2009-06-19?19:11??123\lfq\draw\ColorPanel$4.class
?????文件???????4050??2009-06-19?19:11??123\lfq\draw\ColorPanel.class
?????文件???????1832??2009-06-19?19:34??123\lfq\draw\ControlPane$ChooseButton$1.class
?????文件???????1350??2009-06-19?19:34??123\lfq\draw\ControlPane$ChooseButton.class
?????文件???????2538??2009-06-19?19:34??123\lfq\draw\ControlPane.class
?????文件???????1071??2009-06-19?22:31??123\lfq\draw\DrawPanel$1.class
?????文件???????1954??2009-06-19?22:31??123\lfq\draw\DrawPanel$2.class
?????文件???????6606??2009-06-19?22:31??123\lfq\draw\DrawPanel.class
?????文件????????621??2009-06-21?14:55??123\lfq\draw\Painter$1.class
?????文件???????1531??2009-06-21?14:55??123\lfq\draw\Painter$2.class
?????文件???????2025??2009-06-21?14:55??123\lfq\draw\Painter$3.class
?????文件???????1017??2009-06-21?14:55??123\lfq\draw\Painter$4.class
?????文件???????1536??2009-06-21?14:55??123\lfq\draw\Painter$5.class
?????文件???????1104??2009-06-21?14:55??123\lfq\draw\Painter$6.class
?????文件???????4371??2009-06-21?14:55??123\lfq\draw\Painter.class
?????文件???????1444??2009-06-18?01:01??123\lfq\draw\RedoUndoStruct.class
?????文件????????915??2009-06-19?19:24??123\lfq\draw\resources\ColorPickerToolIcon.gif
?????文件????????123??2009-04-19?15:09??123\lfq\draw\resources\CurveToolIcon.gif
?????文件????????906??2009-06-16?18:31??123\lfq\draw\resources\EllipseSelectToolIcon.gif
?????文件????????908??2009-06-16?18:36??123\lfq\draw\resources\EllipseToolIcon.gif
?????文件????????964??2009-06-16?18:37??123\lfq\draw\resources\EraserToolIcon.gif
?????文件????????898??2009-06-16?18:36??123\lfq\draw\resources\FontBoldIcon.gif
?????文件????????902??2009-06-16?18:37??123\lfq\draw\resources\FontItalicIcon.gif
?????文件????????860??2009-06-16?18:47??123\lfq\draw\resources\FontToolIcon.gif
?????文件????????910??2009-06-16?18:38??123\lfq\draw\resources\FontUnderlineIcon.gif
?????文件????????902??2009-06-16?18:38??123\lfq\draw\resources\FreeformShapeToolIcon.gif
?????文件????????909??2009-06-16?18:38??123\lfq\draw\resources\LassoSelectToolIcon.gif
............此處省略102個文件信息
評論
共有 條評論