?? 畫圓角矩形.java
字號:
/* * 畫圓角矩形.java * * Created on 2004年9月24日, 上午10:42 *//** * * @author litertiger */import java.awt.*;public class 畫圓角矩形 extends java.applet.Applet { /** Initialization method that will be called after the applet is loaded * into the browser. */ public void paint(Graphics g) { g.setColor(Color.red); g.drawRoundRect(0,0, 20,20, 3, 5); g.drawRoundRect(40,40, 100, 100, 80, 80); } public void init() { // TODO start asynchronous download of heavy resources } // TODO overwrite start(), stop() and destroy() methods}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -