MButton.java
资源名称:MapModule.rar [点击查看]
上传用户:njlgjx
上传日期:2022-08-07
资源大小:9105k
文件大小:1k
源码类别:
图形图象
开发平台:
Java
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.mwq.map.calendar;
- import java.awt.Color;
- import java.awt.Font;
- import java.awt.Insets;
- import javax.swing.JButton;
- /**
- *
- * @author Administrator
- */
- public class MButton extends JButton {
- public MButton(int day) {
- super(day + "");
- setBorderPainted(false);// 不绘制边框
- setBackground(Color.WHITE);// 背景色为白色
- setMargin(new Insets(0, 0, 0, 0));// 文本和边框间的距离为0
- setFont(new Font("宋体", Font.BOLD, 14));// 设置字体及样式
- }
- }