Swing不丑系列:ScrollPane

今天上班的路上碰到JScrollPane 他非常愤怒,吹着胡子问我:喂!什么时候才能轮到我??我已经平淡很久了.
其实不能怪我..他是一个麻烦的家伙..相对于JButton JComboBox等一些简单组件来说.

但看在
JScrollPane
 默默的为Swing滚动的份上..尝试让他从我手里,成为一个帅哥.

|----------------------------------------------------------------------------------------|
                     版权声明  版权所有 @chensiyu
            引用请注明来源 
www.blogjava.net/chensiyu04

            本文由  陈思羽 于 2011年8月24号 出品..
|----------------------------------------------------------------------------------------|

想要做好组件 心一定要细, 例如ScrpllPane得右下角Component 都要对着渐变一下.
但一定要首先判断 用户是否设置了右下角Component 

if (scrollPane.getCorner(ScrollPaneConstants.LOWER_RIGHT_CORNER) == null) {
            Component component 
= new JLabel("") {

                @Override
                
protected void paintComponent(Graphics g) {
                    Graphics2D g2 
= (Graphics2D) g;
                    Paint oldPaint 
= g2.getPaint();
                    Rectangle bounds 
= getBounds();
                    Paint backgroupRectPaint 
= new GradientPaint(00new Color(216216216),
                            bounds.width, bounds.height, 
new Color(152152152));
                    g2.setPaint(backgroupRectPaint);
                    g2.fillRect(
00, bounds.width, bounds.height);
                    g2.setPaint(oldPaint);

                }
            };
            scrollPane.setCorner(ScrollPaneConstants.LOWER_RIGHT_CORNER, component);
        }

在代码里附带了中文注释.详细可以下载代码看,

下载地址:ScrollBarDemo

posted on 2011-08-25 16:35 相信 阅读(3298) 评论(4)  编辑  收藏 所属分类: Swing文章

评论

# re: Swing不丑系列:ScrollPane[未登录] 2011-08-26 10:30 greatghoul

这个ScrollPane的确漂亮呀。  回复  更多评论   

# re: Swing不丑系列:ScrollPane 2011-08-27 12:02 相信

哈哈..虽然麻烦..但毕竟他的功劳不小..  回复  更多评论   

# re: Swing不丑系列:ScrollPane 2011-09-05 17:54 swingboy

楼主 你的swing主题是用的什么啊 挺好看的   回复  更多评论   

# re: Swing不丑系列:ScrollPane 2011-09-06 09:20 相信

系统自带的皮肤. ubuntu  回复  更多评论   


只有注册用户登录后才能发表评论。


网站导航:
 
<2024年4月>
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011

导航

统计

公告

不显示applet

常用链接

留言簿(16)

我参与的团队

随笔档案

文章分类

文章档案

新闻档案

相册

swingchina 专业搞Swing的网站

搜索

最新评论

阅读排行榜

评论排行榜