当前位置:   article > 正文

DevExpress_常用控件入门_c# devexpress常见控件

c# devexpress常见控件

简介:

XtraEditors   Library是专门为可视化的Studio.NET设计的最优化的一套100%的C#控件

XtraEdiotors Library是一款具有革命性的超过20种数据编辑控制的控件

它是国内第一款适合于.NET框架类型的控件。


准备工作

1. DevExpress控件的安装
2. Demo查看
3. 帮助文档使用


与.net基本的控件比较

1. 命名空间(NameSpace)
.net基本控件的类都在System.Windows.Forms的命名空间下
DevExpress的控件类在DevExpress命名空间


2. 可以代替.net的控件
DevExpress的大部分控件都已可以代替.net的基本控件。


如:

按钮:
System.Windows.Forms.Button -> DevExpress.XtraEditors.SimpleButton


文本框:
System.Windows.Forms.TextBox -> DevExpress.XtraEditors.TextEdit

复选框
System.Windows.Forms.CheckBox -> DevExpress.XtraEditors.CheckEdit

下拉框:
System.Windows.Forms.ComboBox -> DevExpress.XtraEditors.ComboBoxEdit


日 期:
System.Windows.Forms.DateTimePicker -> DevExpress.XtraEditors.DateEdit   /   DevExpress.XtraEditors.TimeEdit

这里就不一一列举了,认真看看,相信一定找出很多可以替代的控件


二. 几个比较重要、常用的属性

1:EditValue

DevExpress.XtraEditors.*Edit 的控件都不可少的一个EditValue属性。

如:DevExpress.XtraEditors.*Edit

通常,EditValue会跟Text的值是一样的。


只是EditValue的类型为Object,

Text的属性为String,

也就是EditValue通常可以代替Text属性。


2. Enable 和 Visable

是否禁用和是否可见


3. Properties

设置控件一些特征
DevExpress.XtraEditors.TextEdit   textEdit  =  …;

例如 是否只读:
textEdit.Properties.ReadOnly = true;


不允许获得焦点
textEdit.Properties.AllowFocused = false;


禁止空值输入
textEdit.Properties.AllowNullInput = false;

// 当这个属性应用在TimeEdit中,它的清除按钮,将会禁用(灰掉)喵喵喵???


禁止编辑器输入

ComboBoxEdit   comboBoxEdit  =  …;
comboBoxEdit.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;

// 只选模式,不能输入文本


4. Appearance 设置风格。

Dexpress把所有设置控件风格的特性都放到Appearance属性下。
例:
DevExpress.XtraEditors.SimpleButton  simpleButton = …;

//前景色
simpleButton.Appearance.ForeColor = Color.Red;

//背景色
simpleButton.Appearance.BackColor = Color.Red;


Appearance.TextOptions
文本对齐操作

// 居中对齐
simpleButton.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

// 自动换行。

// 当控件的宽度容不下文本的长度,会自动换行。
simpleButton.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;


注意:

在某些控件中, Properties属性下才有Apperarance
DevExpress.XtraEditors.TextEdit  textEdit =  …;
textEdit.Properties.Appearance.ForeColor = Color.Red;


三. 几个常用的控件

1:用强大的LookUpEdit代替ComboBox

1.1 ComboBox不支持数据绑定
2.1 由于DevExpress的ComboBox天生存在数据绑定缺陷,

所以有时我们要做数据绑定这种杀鸡小事时,不得不使用牛刀LooUpEdit


如下代码,可用实现一个ComboBox:

  1. // 未闻花名vwhm.net
  2. // 禁止文本输入
  3. this.lookUpEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
  4. // 默认为null的显示
  5. this.lookUpEdit1.Properties.NullText = "[请选择类别]";
  6. // 加入一个显示列
  7. this.lookUpEdit1.Properties.Columns.Add(new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name"));
  8. // 不显示页眉(包括列头)
  9. this.lookUpEdit1.Properties.ShowHeader = false;
  10. // 不显示页脚(包括关闭按钮)
  11. this.lookUpEdit1.Properties.ShowFooter = false;
  12. // 要显示的字段,Text获得
  13. this.lookUpEdit1.Properties.DisplayMember = "Name";
  14. // 实际值的字段,EditValue获得
  15. this.lookUpEdit1.Properties.ValueMember = "Value";
  16. // 数据绑定
  17. ICollection list = Global.ClassCategoryList;
  18. // 绑定数据
  19. this.lookUpEdit1.Properties.DataSource = list;
  20. // 设置行数(根据这个自动设置高度)
  21. this.lookUpEdit1.Properties.DropDownRows = list.Count;


2. GridControl

GridControl可以代替.net的System.Windows.Forms.DataGrid控件。
GirdControl只是一个容器控件,必须要求GridView视图作为它的子控件。
GridControl可以包含多个视图,可以实现视图的切换


每个GridView视图必须包含列(Column)
GridControl支持层级视图


GridControl 经常设置的属性
使用导航器
this.gridControl1.UseEmbeddedNavigator = true;


  1. this.gridControl1.EmbeddedNavigator.Buttons.Append.Visible = false;
  2. this.gridControl1.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
  3. this.gridControl1.EmbeddedNavigator.Buttons.Edit.Visible = false;
  4. this.gridControl1.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
  5. this.gridControl1.EmbeddedNavigator.Buttons.Remove.Visible = false;
  6. this.gridControl1.EmbeddedNavigator.Buttons.First.Visible = true;
  7. this.gridControl1.EmbeddedNavigator.Buttons.Last.Visible = true;
  8. this.gridControl1.EmbeddedNavigator.Buttons.Next.Visible = true;
  9. this.gridControl1.EmbeddedNavigator.Buttons.NextPage.Visible = true;
  10. this.gridControl1.EmbeddedNavigator.Buttons.Prev.Visible = true;
  11. this.gridControl1.EmbeddedNavigator.Buttons.PrevPage.Visible = true;

GridView 经常设置的属性

  1. // 禁止编辑
  2. this.gridView1.OptionsBehavior.Editable = false;
  3. // 不允许使用过滤
  4. this.gridView1.OptionsCustomization.AllowFilter = false;
  5. // 不允许使用排序
  6. this.gridView1.OptionsCustomization.AllowSort = false;
  7. // 不显示组面板
  8. this.gridView1.OptionsView.ShowGroupPanel = false;
  9. // 如果宽度溢出,自动出现滚动条
  10. this.gridView1.OptionsView.ColumnAutoWidth =true;
  11. // 禁止单元格获得焦点
  12. this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
  13. // 选择的行背景透明
  14. this.gridView1.Appearance.SelectedRow.BackColor = Color.Transparent;

事件

  1. // 未闻花名vwhm.net
  2. //订阅行焦点改变事件
  3. this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
  4. //验证编辑器(单元格)值输入
  5. this.gridView1.ValidatingEditor += new DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventHandler(this.gridView1_ValidatingEditor);
  6. private void gridView1_ValidatingEditor(object sender, DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventArgs e)
  7. {
  8. if (gridView1.FocusedColumn == col产品名称)
  9. {
  10. if (string.IsNullOrEmpty(e.Value as string)) {
  11. e.ErrorText = "产品名称不能为空";
  12. e.Valid = false;
  13. }
  14. }
  15. }


  1. // 未闻花名vwhm.net
  2. //订阅设置行风格事件
  3. this.gridView1.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridView1_RowStyle);
  4. private void gridView1_RowStyle(object sender, DevExpress.XtraGrid.Views.Grid.RowStyleEventArgs e)
  5. {
  6. object value = gridView1.GetRowCellValue(e.RowHandle, "中止");
  7. if (value!=null&&(bool)value) {
  8. e.Appearance.ForeColor = Color.Red;
  9. }
  10. }
  11. this.gridView1.CustomColumnDisplayText += new DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventHandler(this.gridView1_CustomColumnDisplayText);
  12. private DataTable _CategoryList;
  13. public DataTable CategoryList {
  14. get {
  15. if (_CategoryList == null) {
  16. _CategoryList=GetData("select * from 产品类别");
  17. DataColumn pk = _CategoryList.Columns["类别ID"];
  18. _CategoryList.PrimaryKey = new DataColumn[] {pk};
  19. }
  20. return _CategoryList;
  21. }
  22. }
  23. private void gridView1_CustomColumnDisplayText(object sender, DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventArgs e)
  24. {
  25. if (e.Column.Name == "col类别ID") {
  26. e.DisplayText = CategoryList.Rows.Find(e.Value)["类别名称"] as string;
  27. }
  28. }

  1. // 行单元格对齐
  2. this.gridView1.RowCellDefaultAlignment += new DevExpress.XtraGrid.Views.Base.RowCellAlignmentEventHandler(this.gridView1_RowCellDefaultAlignment);
  3. private void gridView1_RowCellDefaultAlignment(object sender, DevExpress.XtraGrid.Views.Base.RowCellAlignmentEventArgs e)
  4. {
  5. e.HorzAlignment = DevExpress.Utils.HorzAlignment.Near;
  6. }

3. 界面操作

3.1 根据条件操作行或列风格

3.2 添加RepositoryItem(内嵌元素In-place EditorRepository)

3.3 列汇总

首先,设置this.gridView1.OptionsView.ShowFooter = true;

this.col库存量.SummaryItem.DisplayFormat = “总量:{0}”;

// 六种:Sum,Average,Count,Max,Min,Custom
col单位数量.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;


四. 数据检查、验证

1. 演示Mask
2. DXValidationProvider的组件使用

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/135810
推荐阅读
相关标签
  

闽ICP备14008679号