磨砂边框 : 磨砂边框 « Swing « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » Swing » 磨砂边框 
14. 107. 1. 磨砂边框
  1. A matte border displays a matte pattern.
  2. The matte pattern is created by using either a solid color or an icon.
  3. Solid matte borders are created by using the specified color.
  4. Tiled matte borders are created by using an icon that displays a matte picture.

The following constructors create a matte border:

public MatteBorder(int top, int left, int bottom, int right, Color color)   
  public MatteBorder(int top, int left, int bottom, int right, Icon tileIcon)   
  public MatteBorder(Icon tileIcon)
public MatteBorder(int top, int left, int bottom, int right, Color color)
Border matteBorder = new MatteBorder(510510, Color.GREEN);


public MatteBorder(int top, int left, int bottom, int right, Icon icon)
Icon diamondIcon = new DiamondIcon(Color.RED);
Border matteBorder = new MatteBorder(510510, diamondIcon);


public MatteBorder(Icon icon)
Icon diamondIcon = new DiamondIcon(Color.RED);
Border matteBorder = new MatteBorder(diamondIcon);
public MatteBorder(Insets insets, Color color)
Insets insets = new Insets(510510);
Border matteBorder = new MatteBorder(insets, Color.RED);


public MatteBorder(Insets insets, Icon icon)
Insets insets = new Insets(510510);
Icon diamondIcon = new DiamondIcon(Color.RED);
Border matteBorder = new MatteBorder(insets, diamondIcon);


public static MatteBorder createMatteBorder(int top, int left, int bottom, int right, Color color)
Border matteBorder = BorderFactory.createMatteBorder(510510, Color.GREEN);


public static MatteBorder createMatteBorder(int top, int left, int bottom, int right, Icon icon)
Icon diamondIcon = new DiamondIcon(Color.RED);
Border matteBorder = BorderFactory.createMatteBorder(510510, diamondIcon);
14. 107. 磨砂边框
14. 107. 1. 磨砂边框
14. 107. 2. 彩色MatteBorder彩色MatteBorder
14. 107. 3. 使用图标创建边界:MatteBorder使用图标创建边界:MatteBorder
14. 107. 4. 从BorderFactory创建和设置MatteBorder
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.