aswing JTable用法
生活随笔
收集整理的這篇文章主要介紹了
aswing JTable用法
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
View Code public class TestJTable extends Sprite{private static const color : ASColor = new ASColor ( 0x5B411E , 1 );//空皮膚的邊界private static const border : SkinEmptyBorder = new SkinEmptyBorder ( 0 , 0 , 0 , 0 );public function TestJTable(){AsWingManager.initAsStandard(this);var window:JWindow = new JWindow();window.setSizeWH(400,200);window.setLocationXY(10,10);window.setBorder(new LineBorder());window.getContentPane().setLayout( new FlowLayout() );window.show();var column:Array = ["姓名","性別","年齡"];var data:Array = [["Sammy","男","25"],["Ruby","女","23"]];var model:DefaultTableModel = new DefaultTableModel().initWithDataNames(data,column);var table:JTable = new JTable(model);//水平間隔線table.setShowHorizontalLines(false);//豎直間隔線table.setShowVerticalLines(false);//設(shè)置字體顏色,前景色
// table.setForeground(color);//設(shè)置選中行的時候的字體顏色
table.setSelectionForeground(color);table.setBorder ( border );//拉伸的模式,隨意拉伸
table.setAutoResizeMode ( JTable.AUTO_RESIZE_OFF );//只能選擇一行
table.setSelectionMode ( JTable.SINGLE_SELECTION );//行高table.setRowHeight ( 40 );//設(shè)置為透明table.setOpaque ( false );//設(shè)置單元格bordertable.setShowGrid ( false );window.getContentPane().append(table);}}
總結(jié)
以上是生活随笔為你收集整理的aswing JTable用法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 使用Ext JS,不要使用页面做组件重用
- 下一篇: 修改程序的形而上学思考(随笔)