欢迎来到天天文库
浏览记录
ID:9211582
大小:141.33 KB
页数:16页
时间:2018-04-22
《devexpress学习小结》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、以下内容为学习DevExpress过程中的以下总结:1、Grid根据单元格设置行背景色:privatevoidgvTaskOrderDetail_RowCellStyle(objectsender,RowCellStyleEventArgse){GridViewgv=senderasGridView;Int32?goodsStockQty=CommonUtils.ObjectToInt32(gv.GetRowCellValue(e.RowHandle,gv.Columns.ColumnByFieldN
2、ame("GOODSSTOCKQTY")));Int32?productId=CommonUtils.ObjectToInt32(gv.GetRowCellValue(e.RowHandle,gv.Columns.ColumnByFieldName("TASKPRODUCTID")));if(goodsStockQty!=null){if(goodsStockQty>0){e.Appearance.BackColor=Color.Pink;}else{if(productId==Constants.S
3、MJH_ID){e.Appearance.BackColor=Color.Pink;}}}else{if(productId==Constants.SMJH_ID){e.Appearance.BackColor=Color.Pink;}}}2、c#程序查询oracle,在界面数据显示“?”,解决方法:在客户的电脑新建环境变量,变量名为:NLS_LANG值为:SIMPLIFIEDCHINESE_CHINA.ZHS16GBK3、数字控件去掉上下滚动箭头:属性:AllowMouseWheel:false4、
4、CheckedComboBoxEdit下拉多选控件的使用:a、初始化:foreach(DataRowdrindt.Rows){this.chkcbGoodsType.Properties.Items.Add(newComboxInfo(dr["GOODSTYPEID"].ToString(),dr["GOODSTYPENAME"].ToString()));}第二种方法:CheckedListBoxItem[]itemListQuery=newCheckedListBoxItem[listCustom
5、erType.Count];intcheck=0;foreach(DictDetailVodetinlistCustomerType){itemListQuery[check]=newCheckedListBoxItem(det.DictDetailCode,det.DictDetailName);check++;}this.chkcbCustomerType.Properties.Items.AddRange(itemListQuery);b、后台赋值:(id和name对应)第一种方法:this.c
6、hkcbGoodsType.EditValue=dt.Rows[0]["GOODSTYPEID"].ToString();this.chkDriveTruckType.RefreshEditValue();或者this.chkcbGoodsType.Text=dt.Rows[0]["GOODSTYPENAME"].ToString();第二种方法this.chkcbGoodsType.EditValue=newCheckedListBoxItem(dt.Rows[0]["GOODSTYPEID"].T
7、oString(),dt.Rows[0]["GOODSTYPENAME"].ToString());c、获取选中的值:IListlist=this.chkcbGoodsType.Properties.Items.GetCheckedValues();stringgoodsType="";foreach(objectobjinlist){goodsType+=","+((ComboxInfo)obj).Code.ToString();}第二种方法:stringstr=this.chkcb
8、CustomerTypeQuery.EditValue;5、ProgressBarControl进度条:this.pBUpload.Properties.Maximum=100;this.pBUpload.Properties.Step=1;pBUpload.Position=0;for(inti=1;i<101;i++){//处理当前消息队列中的所有windows消息Application.DoEvents();this.pBUpload.Perfor
此文档下载收益归作者所有