| 发表于:2007-01-16 17:13:504楼 得分:15 |
自定义样式 private void setdatagrid() { //设置只读属性 this.grdbookinginfo.readonly=true; if(this.grdbookinginfo.tablestyles.count!=0) { this.grdbookinginfo.tablestyles.clear(); } datagridcoloredtextboxcolumn column1=new datagridcoloredtextboxcolumn(); column1.mappingname= "clscode "; column1.headertext= "子舱 "; column1.width=35; mystyle.gridcolumnstyles.add(column1); datagridcolumnstyle column2=new datagridtextboxcolumn(); column2.mappingname= "cmpcode "; column2.headertext= "所属机舱 "; column2.width=35; mystyle.gridcolumnstyles.add(column2); //.......// mystyle.allowsorting=false; try { this.grdbookinginfo.tablestyles.add(mystyle); } catch(exception err) { messagebox.show(err.message); } } | | |
|