XtraGridgridview基本用法摘要.doc

  1. 1、本文档共10页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
XtraGridgridview基本用法摘要

XtraGrid gridview基本用法 DevExpress XtraGrid的功能实在强大,刚使用的时候看到一大片属性设置,分不清东南西北,参照demo和使用中的一些经验,记录一下使用方法。现在数据库访问都使用ORM技术了,对于DataSouce绑定以下是以IList为说明对象。 控件基本定义 DevExpress.XtraGrid.GridControl gridControl1; 1、 数据绑定(IList) DevExpress.XtraGrid.Views.Grid.GridView gridView1; IListMyClass list = new BindingListMyClass(); //初始list list.Add(A); list.Add(B); ……….. gridControl1.DataSource = list; 2、 在Grid上编辑数据 修改属性gridView1.OptionsView.NewItemRowPosition,设为Top或Bottom可以在Grid上添加数据。 (在demo中原文:a record object must be inherited from the IEditableObject class if you need the ability to cancel newly added records via the grid) 译:如果你需要通过gird取消新建的记录,你的记录对象必须实现IEditableObject (注:在测试中,感觉不需要继承IEditableObject,在grid编辑后也能实现取消。demo通过实现IEditableObject的BeginEdit、CancelEdit方法,数据编辑后恢复特定数据。不使用grid直接修改数据,可以考虑这种恢复原数据的方法。) 3、 修改列(Column)格式 DevExpress.XtraGrid.Columns.GridColumn col = gridView1.Columns[0]; 数据对齐方式 col.AppearanceCell.TextOptions.HAlignment, 默认值Default,可选值Default/Near/Center/Far。 说明:以下情况是基于从左到右的文字排列;若是从右到左,用法相反。 Default:数据默认的对齐方式 Near:左对齐 Center:居中对齐 Far:右对齐 列标题 col.Caption 对应绑定数据的属性 col.FieldName 排列顺序 col.VisibleIndex 格式化显示数据 Col.DisplayFormat.FormatType Col.DisplayFormat.Format Col.DisplayFormat.FormatString 区别:FormatType/FormatString 使用当前系统的语言区域设置,Format使用特定的System.IFormatProvider设置。 (原文注释:Use the FormatType and FormatString properties to format values based on the current language and regional settings (culture). FormatType specifies the type of values to be formatted. FormatString specifies a format pattern appropriate for the current FormatType value. You can refer to the Standard Numeric Format Strings and Date and Time Format Strings topics in MSDN for information on format specifiers. Setting the FormatType property changes the format provider used when formatting values by the GetDisplayText function. Format providers supply mation such as the character to use as the decimal

文档评论(0)

586334000 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档