c#

位置:IT落伍者 >> c# >> 浏览文章

C#高级编程:显示列表数据[1]


发布日期:2020年09月03日
 
C#高级编程:显示列表数据[1]
——此文章摘自《C#高级编程(第版)》定价元 特价元 购买

章介绍了选择数据和把数据放在一个数据表中的各种方式但仅使用了ConsoleWriteLine()方法以非常基本的形式显示数据

第一个示例将说明如何获取一些数据并在DataGrid控件中显示为此建立一个新的应用程序DisplayTabularData如图所示

这个简单的应用程序从Northwind数据库的customer表中选择每个记录在DataGrid中把它们显示给用户其代码如下所示

using System;

using SystemWindowsForms;

using SystemData;

using SystemDataSqlClient;

public class DisplayTabularData : SystemWindowsFormsForm

{

private SystemWindowsFormsButton retrieveButton;

private SystemWindowsFormsDataGrid dataGrid;

public DisplayTabularData()

{

thisAutoScaleBaseSize = new SystemDrawingSize( );

thisClientSize = new SystemDrawingSize( );

thisText = _DisplayTabularData;

代码的起始部分创建主窗口类为该类定义实例变量设置窗口的一些属性接着创建DataGrid网格控件

thisdataGrid = new SystemWindowsFormsDataGrid();

dataGridBeginInit();

dataGridLocation = new SystemDrawingPoint( );

dataGridSize = new SystemDrawingSize( );

dataGridTabIndex = ;

dataGridAnchor = AnchorStylesBottom | AnchorStylesTop |

AnchorStylesLeft | AnchorStylesRight;

thisControlsAdd(thisdataGrid);

dataGridEndInit();

[] []

               

上一篇:C#中构造函数和析构函数的用法(一)

下一篇:C#高级编程:显示列表数据[2]