• 大小: 3.18KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-20
  • 语言: Java
  • 标签:

资源简介

Java Applet绘制圆角矩形(提高篇-实例570).zip

资源截图

代码片段和文件信息

package com.zzk;

import java.applet.applet;
import java.awt.Color;
import java.awt.Graphics;

public class DrawRoundRectapplet extends applet {
    public void paint(Graphics g) {
        String value = “画圆角矩形“;
        int x = 20;// 圆角矩形位置的横坐标
        int y = 20;// 圆角矩形位置的纵坐标
        int width = 70;// 圆角矩形宽度
        int height = 129;// 圆角矩形高度
        int xr = 5;                         // 圆角矩形圆角的水平弧度
        int yr = 7;                         // 圆角矩形圆角的垂直弧度

        g.setColor(Color.blue);// 设置颜色
        g.drawRoundRect(x y width height xr yr); // 绘制图形
        
        int x0 = 35; // 圆角矩形位置的横坐标
        int y0 = 35; // 圆角矩形位置的纵坐标
        int width0 = 82; // 圆角矩形宽度
        int height0 = 139; // 圆角矩形高度
        int xr0 = 10; // 圆角矩形圆角的水平弧度
        int yr0 = 12; // 圆角矩形圆角的垂直弧度
        g.setColor(Color.blue);// 设置颜色
        g.drawRoundRect(x0 y0 width0 height0 xr0 yr0);// 绘制图形
        
        int x1 = 59;// 圆角矩形位置的横坐标
        int y1 = 59;// 圆角矩形位置的

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         301  2010-12-22 08:52  .classpath
     文件         379  2010-12-22 08:52  .project
     文件         629  2010-12-22 08:52  .settings\org.eclipse.jdt.core.prefs
     文件         108  2010-12-22 08:52  bin\DrawRoundRectapplet.html
     文件         141  2010-12-27 16:57  bin\java.policy.applet
     文件        1254  2011-01-29 09:04  bin\com\zzk\DrawRoundRectapplet.class
     文件         108  2010-12-22 08:52  src\DrawRoundRectapplet.html
     文件        1510  2010-12-27 17:53  src\com\zzk\DrawRoundRectapplet.java

评论

共有 条评论