1 / 6

C# DataGridView 统计操作 讲师:小浩

DataGridView 合计行. C# DataGridView 统计操作 讲师:小浩. 培训内容. 了解 DataGridView 数据绑定机制。 数据绑定控件的 DataSource 属性,获取或设置对象,数据绑定控件从该对象中检索其数据项列表。 理解 DataGridView 统计。 DataGridView 控件提供一种强大而灵活的以表格形式显示数据的方式。可以使用 DataGridView 控件来显示少量数据的只读视图,也可以对其进行缩放以显示特大数据集的可编辑视图。. 事例. 要了解的知识. 1 、 Dataset 简介.

holly
Download Presentation

C# DataGridView 统计操作 讲师:小浩

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. DataGridView 合计行 C#DataGridView统计操作讲师:小浩

  2. 培训内容 • 了解DataGridView数据绑定机制。 • 数据绑定控件的DataSource属性,获取或设置对象,数据绑定控件从该对象中检索其数据项列表。 • 理解DataGridView统计。 • DataGridView 控件提供一种强大而灵活的以表格形式显示数据的方式。可以使用DataGridView 控件来显示少量数据的只读视图,也可以对其进行缩放以显示特大数据集的可编辑视图。

  3. 事例

  4. 要了解的知识 1、Dataset简介 DataSet 对象是支持 ADO.NET 的断开式、分布式数据方案的核心对象。DataSet 是数据的内存驻留表示形式,无论数据源是什么,它都会提供一致的关系编程模型。它可以用于多种不同的数据源,用于 XML数据,或用于管理应用程序本地的数据。DataSet 表示包括相关表、约束和表间关系在内的整个数据集

  5. 2、DataTable的使用 1、DataTable使用到的方法 NewRow() 创建与该表具有相同架构的新 DataRow。 命名空间:System.Data Compute() 计算用来传递筛选条件的当前行上的给定表达式。 命名空间:System.Data

  6. Compute方法详细介绍 Compute函数的参数就两个:Expression,和Filter 第一个参数Expresstion 1:聚合函数”Sum()” 2:自由计算表达式“20*30+1” 3:bool表达式“1=2” 4:IFF逻辑表达式” IIF(20>1000, 0, 1)” 还支持IsNull,Trim,SubString等,具体的可以看MSDN 第二个参数Filter 就是一个简单的查询条件。比如,”true”, “Id>4”, “Name like ’%nd’ and sex=’male’”.

More Related