熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

C#高級編程:顯示列表數據[1]

2022-06-13   來源: .NET編程 
    ——此文章摘自《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();

[]  []  


From:http://tw.wingwit.com/Article/program/net/201311/14884.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.