DevExpress入门教程.ppt_第1页
DevExpress入门教程.ppt_第2页
DevExpress入门教程.ppt_第3页
DevExpress入门教程.ppt_第4页
DevExpress入门教程.ppt_第5页
已阅读5页,还剩16页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

DeVExpress控件入门 简介 XtraEditorsLibrary是专门为可视化的Studio NET设计的最优化的一套100 的C 控件XtraEdiotorsLibrary是一款具有革命性的超过20种数据编辑控制的控件 它是国内第一个适合于 NET框架类型的控件 广州易麦科技 准备工作 1 DevExpress控件的安装2 Demo查看3 帮助文档使用 广州易麦科技 一 与 net基本的控件比较 1 命名空间 NameSpace net基本控件的类都在System Windows Forms的命名控件下DevExpress的控件类在DevExpress命名空间下 广州易麦科技 2 可以代替 net的控件 DevExpress的大部分控件都已可以代码 net的基本控件 如 文本框 System Windows Forms TextBox DevExpress XtraEditors TextEdit按钮 System Windows Forms Button DevExpress XtraEditors SimpleButton下拉框 System Windows Forms ComboBox DevExpress XtraEditors ComboBoxEdit 广州易麦科技 日期 System Windows Forms DateTimePicker DevExpress XtraEditors DateEdit DevExpress XtraEditors TimeEdit复选框System Windows Forms CheckBox DevExpress XtraEditors CheckEdit这里就不一一列举了 认真看看 相信一定找出很多可以替代的控件 广州易麦科技 二 几个比较重要 常用的属性 1 EditValueDevExpress XtraEditors Edit的控件都不可少的一个EditValue属性 如 DevExpress XtraEditors Edit通常 EditValue会跟Text的值是一样的 只是EditValue的类型为Object Text的属性为String 也就是EditValue通常可以代替Text属性 2 Enable和Visable是否禁用和是否可见 广州易麦科技 3 Properties设置控件一些特征DevExpress XtraEditors TextEdittxt 例 是否只读txt Properties ReadOnly true 不允许获得焦点txt Properties AllowFocused false 不允许空值输入txt Properties AllowNullInput true 当这个属性应用在TimeEdit中 它的清除按钮 将会禁用 灰掉 广州易麦科技 禁止编辑器输入如 ComboBoxEditc c Properties TextEditStyle DevExpress XtraEditors Controls TextEditStyles DisableTextEditor 只选模式 不能输入文本 广州易麦科技 4 Appearance设置风格 Dexpress把所有设置控件风格的特性都放到Appearance属性下 例 DevExpress XtraEditors SimpleButtonbtn btn Appearance ForeColor Color Red 前景色btn Appearance BackColor Color Red 背景色 广州易麦科技 Appearance TextOptions文本对齐操作例 btn Appearance TextOptions HAlignment DevExpress Utils HorzAlignment Center 居中对齐btn Appearance TextOptions WordWrap DevExpress Utils WordWrap Wrap 自动换行 当控件的宽度容不下文本的长度 会自动换行 注意 在某些控件中Apperarance是在Properties属性下的如 DevExpress XtraEditors TextEdittxt txt Properties Appearance ForeColor Color Red 广州易麦科技 三 几个常用的控件 1 用强大的LookUpEdit代替ComboBox1 1ComboBox不支持数据绑定2 1由于DevExpress的ComboBox天生的数据绑定缺陷 所以有时我们要做数据绑定 不得不使用下 功能过剩 的LooUpEdit 如下代码 可用实现一个ComboBox 广州易麦科技 禁止文本输入this lookUpEdit1 Properties TextEditStyle DevExpress XtraEditors Controls TextEditStyles DisableTextEditor 默认为null的显示this lookUpEdit1 Properties NullText 请选择类别 加入一个显示列this lookUpEdit1 Properties Columns Add newDevExpress XtraEditors Controls LookUpColumnInfo Name this lookUpEdit1 Properties ShowHeader false 不显示页眉 包括列头 this lookUpEdit1 Properties ShowFooter false 不显示页脚 包括关闭按钮 this lookUpEdit1 Properties DisplayMember Name 要显示的字段 Text获得this lookUpEdit1 Properties ValueMember Value 实际值的字段 EditValue获得 数据绑定ICollectionlist Global ClassCategoryList this lookUpEdit1 Properties DataSource list 绑定数据this lookUpEdit1 Properties DropDownRows list Count 设置行数 根据这个自动设置高度 广州易麦科技 2 GridControlGridControl可以代替 net的System Windows Forms DataGrid控件 GirdControl只是一个容器控件 必须要求GridView视图作为它的子控件 GridControl可以包含多个视图 可以实现视图的切换 每个视图必须包含列 Column GridControl支持层级视图 广州易麦科技 GridControl常设置属性使用导航器this gridControl1 UseEmbeddedNavigator true this gridControl1 EmbeddedNavigator Buttons Append Visible false this gridControl1 EmbeddedNavigator Buttons CancelEdit Visible false this gridControl1 EmbeddedNavigator Buttons Edit Visible false this gridControl1 EmbeddedNavigator Buttons EndEdit Visible false this gridControl1 EmbeddedNavigator Buttons Remove Visible false this gridControl1 EmbeddedNavigator Buttons First Visible true this gridControl1 EmbeddedNavigator Buttons Last Visible true this gridControl1 EmbeddedNavigator Buttons Next Visible true this gridControl1 EmbeddedNavigator Buttons NextPage Visible true this gridControl1 EmbeddedNavigator Buttons Prev Visible true this gridControl1 EmbeddedNavigator Buttons PrevPage Visible true 广州易麦科技 GridView常设置属性this gridView1 OptionsBehavior Editable false 禁止编辑this gridView1 OptionsCustomization AllowFilter false 不允许使用过滤this gridView1 OptionsCustomization AllowSort false 不允许使用排序this gridView1 OptionsView ShowGroupPanel false 不显示组面板this gridView1 OptionsView ColumnAutoWidth true 如果宽度溢出 自动出现滚动条this gridView1 OptionsSelection EnableAppearanceFocusedCell false 禁止单元格获得焦点this gridView1 Appearance SelectedRow BackColor Color Transparent 选择的行背景透明 广州易麦科技 事件 订阅行焦点改变事件this gridView1 FocusedRowChanged newDevExpress XtraGrid Views Base FocusedRowChangedEventHandler this gridView1 FocusedRowChanged 验证编辑器 单元格 值输入this gridView1 ValidatingEditor newDevExpress XtraEditors Controls BaseContainerValidateEditorEventHandler this gridView1 ValidatingEditor privatevoidgridView1 ValidatingEditor objectsender DevExpress XtraEditors Controls BaseContainerValidateEditorEventArgse if gridView1 FocusedColumn col产品名称 if string IsNullOrEmpty e Valueasstring e ErrorText 产品名称不能为空 e Valid false 广州易麦科技 订阅设置行风格事件this gridView1 RowStyle newDevExpress XtraGrid Views Grid RowStyleEventHandler this gridView1 RowStyle privatevoidgridView1 RowStyle objectsender DevExpress XtraGrid Views Grid RowStyleEventArgse objectvalue gridView1 GetRowCellValue e RowHandle 中止 if value null 广州易麦科技 this gridView1 CustomColumnDisplayText newDevExpress XtraGrid Views Base CustomColumnDisplayTextEventHandler this gridView1 CustomColumnDisplayText privateDataTable CategoryList publicDataTableCategoryList get if CategoryList null CategoryList GetData select from产品类别 DataColumnpk CategoryList Columns 类别ID CategoryList PrimaryKey newDataColumn pk return CategoryList privatevoidgridView1 CustomColumnDisplayText objectsender DevExpress XtraGrid Views Base CustomColumnDisplayTextEventArgse if e Column Name col类别ID e DisplayText CategoryList Rows Find e Value 类别名称 asstring 广州易麦科技 行单元格对齐this gridV

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论