`
signingoff
  • 浏览: 82220 次
  • 性别: Icon_minigender_1
  • 来自: 福建
社区版块
存档分类
最新评论

XtraGrid掩码编辑

    博客分类:
  • .net
阅读更多
private void button1_Click(object sender, EventArgs e) {
            GridColumnCollection col=this.gridView1.Columns;
            int c = col.Count;
            GridColumn column = null;
            IEnumerator ie = col.GetEnumerator();
            FormatInfo fi = new FormatInfo();
            fi.FormatString = "F2";
            fi.FormatType = FormatType.Numeric;
            RepositoryItemTextEdit rite = new RepositoryItemTextEdit();
            rite.Mask.EditMask = "F2";
            rite.EditFormat.FormatType = FormatType.Numeric;
            while (ie.MoveNext()) {
                column = (GridColumn)ie.Current;

                column.DisplayFormat.FormatString = "F2";
                column.DisplayFormat.FormatType = FormatType.Numeric;
               
                column.RealColumnEdit.EditFormat.FormatType = FormatType.Numeric;
                column.RealColumnEdit.EditFormat.FormatString = "F2";
               
            }
               
           
        }
分享到:
评论

相关推荐

    XtraGrid 用法大全

    XtraGrid是DevExpress为.NET平台提供的一个高级数据网格控件,广泛应用于WinForms应用程序中,用于显示和编辑大量数据。本文将深入解析XtraGrid控件的使用方法,重点介绍如何通过XML配置文件加载和定制GridView。 #...

    DXperience XtraGrid 9.3.4 Sources 源代码

    XtraGrid 控件在WinForms开发中被广泛使用,它提供了高度自定义的界面,支持多种数据操作,如排序、分组、过滤、编辑、格式化等。此外,XtraGrid还支持虚拟模式,可以在处理大量数据时保持高性能。源代码的提供使得...

    XtraGrid使用心得

    XtraGrid 是DevExpress提供的一款强大的网格控件,广泛应用于Windows Forms应用程序中,用于展示和编辑大量数据。在本文中,我们将深入探讨XtraGrid的使用心得,包括分组、排序、自定义和汉化等核心功能。 首先,...

    XtraGrid 主/从的实现

    6. **交互操作**:启用必要的用户交互功能,如添加、编辑、删除和导航操作,确保用户能够有效操作主从数据。 7. **性能优化**:在数据量较大时,考虑使用分页、懒加载等技术来提高性能,避免一次性加载大量数据导致...

    DevExpress.XtraGrid3.dll

    该dll为DevExpress控件的DevExpress XtraGrid3 dll

    DevExpress XtraGrid Demo

    它允许用户实时编辑、排序、过滤和分组数据,提供了一种灵活的方式来显示和管理大量信息。 2. 自定义列:XtraGrid允许用户自定义列的显示样式和行为。你可以设置列宽、字体、颜色,甚至创建复杂的数据格式化规则。...

    Excel导入到XtraGrid中

    XtraGrid是DevExpress公司提供的一个组件,它提供了丰富的功能,如数据分组、排序、过滤、编辑等,使得在.NET应用程序中展示和操作数据变得十分便捷。Excel则是Microsoft Office套件中的电子表格软件,因其强大的...

    WinForm中使用XtraGrid控件

    WinForm中使用XtraGrid控件实现动态修改列显示 WinForm是一个基于Windows Forms的应用程序开发框架,XtraGrid控件是DevExpress公司提供的一款功能强大且灵活的网格控件。通过使用XtraGrid控件,可以轻松地实现动态...

    xtragrid,xtratree,xtrareport简单例子

    在"XtraGrid简单例子"中,你可能会看到如何设置数据源、定义列的显示样式、添加编辑器、处理排序和过滤等功能。XtraGrid不仅支持基本的数据操作,还提供了分组、汇总、自定义总计以及复杂的条件格式化等高级特性。 ...

    XtraGrid帮助文件

    XtraGrid帮助文件 Written from the ground-up in C# - the XtraGrid fully exploits and extends upon our many years of experience in building visual controls for the Windows(R) family of operating systems...

    Devpress.XtraGrid.GridControl.GridView 属性

    Devpress.XtraGrid.GridControl.GridView 是一款强大的数据网格控件,提供了丰富的功能和自定义选项,用于在应用程序中展示和管理数据。以下将详细解释标题和描述中提到的一些关键属性及其作用: 1. **...

    DevExpress,XtraGrid,DXperienceUniversal-11.2.10.zip

    在本压缩包"DevExpress,XtraGrid,DXperienceUniversal-11.2.10.zip"中,主要包含的是DevExpress的一个组件——XtraGrid,这是DevExpress提供的一个强大的数据网格控件,用于构建具有高级功能的数据查看和编辑界面。...

    DevExpress.XtraGrid 是一个很强大的表格显示组件

    DevExpress.XtraGrid 是一个很强大的表格显示组件,但如果表格的每一列用设计器来设计还是很花时间的,也不通用。但如果使用了这个类,做一个表格就非常简单了,只需传字段、显示的名称、宽度,即可自动生成表格出来...

    XtraGrid.DataSource,BindingList

    6. **编辑和验证**:XtraGrid允许用户直接在网格中编辑数据,并可提供数据验证机制,确保输入的合法性。 在`WindowsFormsApplication1.sln`和`WindowsFormsApplication1`项目中,开发者通常会实现一个简单的Windows...

    Developer Express XtraGrid Suite All Sources Code

    suite fool you - the XtraGrid Suite, is far more than just a grid control. And even more important, if you are committed to delivering top notch features to your customers and want the most ...

    DevExpress.XtraGrid.GridControl常用功能(增删改)

    DevExpress.XtraGrid.GridControl常用功能(增删改) DevExpress.XtraGrid.GridControl是一款功能强大的网格控件,提供了多种功能和组件,以满足不同的需求。在这里,我们将详细介绍GridControl常用的功能,包括获取...

    三层架构的 .net Devpress XtraGrid 实例

    XtraGrid提供了丰富的特性集,包括列布局控制、排序、分组、过滤、编辑和验证等,使得开发者可以轻松地在应用程序中展示和操作数据。 首先,我们来深入了解一下Devpress XtraGrid。这个控件不仅仅是一个简单的数据...

    DevExpress中XtraGrid学习视频

    XtraGridLookUpEditControl学习视频,希望对大家有用。我用的是DevExpress9.2.9版本的。

    Devexpress_XtraGrid视频

    Devexpress_XtraGrid视频01,视频讲解Devexpress_XtraGrid的使用过程

Global site tag (gtag.js) - Google Analytics