在DevExpress程式中使用GridView直接錄入數據的時候,增加列表選擇的功能

来源:http://www.cnblogs.com/wuhuacong/archive/2016/12/31/6240114.html
-Advertisement-
Play Games

在我上篇隨筆《在DevExpress程式中使用Winform分頁控制項直接錄入數據並保存》中介紹了在GridView以及在其封裝的分頁控制項上做數據的直接錄入的處理,介紹情況下數據的保存和校驗等操作,不過還沒有涉及到數據列表選擇的這種方式,而這種在項目應用也是比較廣泛的一種輸入方式。本篇隨筆繼續探討在G... ...


在我上篇隨筆《在DevExpress程式中使用Winform分頁控制項直接錄入數據並保存》中介紹了在GridView以及在其封裝的分頁控制項上做數據的直接錄入的處理,介紹情況下數據的保存和校驗等操作,不過還沒有涉及到數據列表選擇的這種方式,而這種在項目應用也是比較廣泛的一種輸入方式。本篇隨筆繼續探討在GridView上直接錄入數據,並增加字典選擇列表的功能。

1、GridView直接錄入數據回顧

在之前整合的數據錄入案例裡面,我們可以看到可以在列表裡面直接錄入速度的便捷性,如下所示。

1)直接在GridView上錄入並保存

2)基於WInform分頁控制項的直接錄入和保存

這種方式就是利用在Griview上對數據校驗後進行保存。

校驗通過後提交資料庫,我們首先需要做的方式是定位記錄集合裡面當前的記錄,把它轉換為具體的實體類對象,然後寫入新記錄或者更新處理,如下所示。

 

2、基於數據字典的下拉列表選擇輸入

我們下麵介紹的內容,作為數據直接錄入的補充,提供基於數據字典的下拉列表輸入方式。

首先我們來看看整體的效果,然後在一步步分析其中的奧秘。

例如對於性別的選擇方式。

以及基於可以搜索的下拉列表

以及多選框的數據顯示處理

或者基於按鈕選擇對話框的實現

這些操作能夠給列表錄入提供多樣化的選擇,也豐富了用戶的輸入模式。

那麼我們如何基於GridView的基礎上實現這些功能呢?

首先我們基於模型構建資料庫表,資料庫表設計如下所示。

然後基於Database2Sharp代碼生成工具生成框架底層的代碼,以及生成WInform界面代碼,生成的界面代碼其中綁定數據部分如下所示。

/// <summary>
/// 綁定列表數據
/// </summary>
private void BindData()
{
    //entity
    this.winGridViewPager1.DisplayColumns = "Name,Sex,Nationality,BirthDate,Height,Weight,City,Area,State,Favorites,Introduction,Creator,CreateTime";
    this.winGridViewPager1.ColumnNameAlias = BLLFactory<Test>.Instance.GetColumnNameAlias();//欄位列顯示名稱轉義

    string where = GetConditionSql();
    var list = BLLFactory<Test>.Instance.FindWithPager(where, this.winGridViewPager1.PagerInfo);
    this.winGridViewPager1.DataSource = new WHC.Pager.WinControl.SortableBindingList<TestInfo>(list);
    this.winGridViewPager1.PrintTitle = "人員測試信息報表";
}   

我們為了添加對應的直接錄入方式,我們需要設置其中的字典綁定,處理方式如下所示,我們通過一個函數SetRepositoryItems來封裝所需處理。

        /// <summary>
        /// 設置GridControl對應的下拉類別內容,方便轉義
        /// </summary>
        private void SetRepositoryItems(GridView gridview)
        {
            var sexList = new List<CListItem>(){new CListItem("", "1"), new CListItem("", "2"), new CListItem("未知", "0")};
            gridview.Columns.ColumnByFieldName("Sex").CreateLookUpEdit().BindDictItems(sexList, false);
            gridview.Columns.ColumnByFieldName("City").CreateLookUpEdit().BindDictItems("城市");
            gridview.Columns.ColumnByFieldName("Nationality").CreateSearchLookUpEdit().BindDictItems("民族");
            gridview.Columns.ColumnByFieldName("Area").CreateLookUpEdit().BindDictItems("市場分區");
            gridview.Columns.ColumnByFieldName("State").CreateLookUpEdit().BindDictItems("處理狀態");
            gridview.Columns.ColumnByFieldName("Favorites").CreateCheckedComboBoxEdit().BindDictItems("興趣愛好");
            gridview.Columns.ColumnByFieldName("Introduction").CreateMemoEdit();
            gridview.Columns.ColumnByFieldName("Creator").CreateButtonEdit().ButtonClick += (object sender, ButtonPressedEventArgs e) =>
            {
                FrmSelectCustomer dlg = new FrmSelectCustomer();
                if(dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                {
                    if(gridview.GetFocusedRow() == null)
                    {
                        gridview.AddNewRow();//如果首次則增加一行
                    }

                    gridview.SetFocusedRowCellValue("Creator", dlg.CustomerName);
                }
            };

            gridview.OptionsBehavior.ReadOnly = false;
            gridview.OptionsBehavior.Editable = true;
        }

然後在上面的BindData函數裡面加入這個方法調用即可。

SetRepositoryItems(this.winGridViewPager1.gridView1);

其中的CreateLookUpEdit、CreateSearchLookUpEdit、CreateCheckedComboBoxEdit、CreateButtonEdit等方法是框架底層進行的內容顯示控制項的處理,為了方便作為擴展函數直接使用的,其規則類似

代碼類似下麵的處理方式。

        /// <summary>
        /// 創建GridView的列編輯為SearchLookUpEdit
        /// </summary>
        /// <param name="gridColumn">GridColumn列對象</param>
        /// <returns></returns>
        public static RepositoryItemSearchLookUpEdit CreateSearchLookUpEdit(this GridColumn gridColumn)
        {
            RepositoryItemSearchLookUpEdit repositoryItem = new RepositoryItemSearchLookUpEdit
            {
                AutoHeight = false,
                NullText = ""
            };
            gridColumn.View.GridControl.RepositoryItems.Add(repositoryItem);
            gridColumn.ColumnEdit = repositoryItem;
            return repositoryItem;
        }

 

當然我們還需要註冊響應的處理事件,代碼如下所示。

private void RegisterEvent()
{
    var grd = this.winGridViewPager1.gridControl1;
    var grv = this.winGridViewPager1.GridView1;

    grv.InitGridView(GridType.NewItem, false);

    #region 列表處理事件
    grv.InitNewRow += delegate(object sender, InitNewRowEventArgs e)
    {
        GridView gridView = grd.FocusedView as GridView;
        gridView.SetFocusedRowCellValue("ID", Guid.NewGuid().ToString());
        gridView.SetFocusedRowCellValue("Creator", LoginUserInfo.Name);
        gridView.SetFocusedRowCellValue("CreateTime", DateTime.Now);
    };

    grv.ValidateRow += delegate(object sender, ValidateRowEventArgs e)
    {
        var result = grd.ValidateRowNull(e, new string[]
        {
            "Name"
        });

        //校驗通過後提交資料庫
        GridView gridView = grd.FocusedView as GridView;
        if (result)
        {
            var newInfo = grv.GetFocusedRow() as TestInfo;
            if (newInfo != null)
            {
                result = BLLFactory<Test>.Instance.InsertUpdate(newInfo, newInfo.ID);
                if (!result)
                {
                    e.Valid = false;
                    e.ErrorText = string.Format("寫入數據出錯");
                }
                else
                {
                    base.ShowMessageAutoHide();
                }
            }
        }
    };
    #endregion
}

然後在窗體初始化的時候,調用上面的註冊事件即可。

/// <summary>
/// 人員測試信息
/// </summary>    
public partial class FrmTest : BaseDock
{
    public FrmTest()
    {
        InitializeComponent();

        InitDictItem();

        this.winGridViewPager1.OnPageChanged += new EventHandler(winGridViewPager1_OnPageChanged);
        this.winGridViewPager1.OnStartExport += new EventHandler(winGridViewPager1_OnStartExport);
        this.winGridViewPager1.OnEditSelected += new EventHandler(winGridViewPager1_OnEditSelected);
        this.winGridViewPager1.OnAddNew += new EventHandler(winGridViewPager1_OnAddNew);
        this.winGridViewPager1.OnDeleteSelected += new EventHandler(winGridViewPager1_OnDeleteSelected);
        this.winGridViewPager1.OnRefresh += new EventHandler(winGridViewPager1_OnRefresh);
        this.winGridViewPager1.AppendedMenu = this.contextMenuStrip1;
        this.winGridViewPager1.ShowLineNumber = true;
        this.winGridViewPager1.BestFitColumnWith = false;//是否設置為自動調整寬度,false為不設置
        this.winGridViewPager1.gridView1.DataSourceChanged += new EventHandler(gridView1_DataSourceChanged);
        this.winGridViewPager1.gridView1.CustomColumnDisplayText += new DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventHandler(gridView1_CustomColumnDisplayText);
        this.winGridViewPager1.gridView1.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(gridView1_RowCellStyle);

        //關聯回車鍵進行查詢
        foreach (Control control in this.layoutControl1.Controls)
        {
            control.KeyUp += new System.Windows.Forms.KeyEventHandler(this.SearchControl_KeyUp);
        }

        //註冊對應的GridView處理事件
        RegisterEvent();
    }

我們在數據源變化的時候,設置好各個列的寬度,方便正常顯示內容就很完美了。

/// <summary>
/// 綁定數據後,分配各列的寬度
/// </summary>
private void gridView1_DataSourceChanged(object sender, EventArgs e)
{
    if (this.winGridViewPager1.gridView1.Columns.Count > 0 && this.winGridViewPager1.gridView1.RowCount > 0)
    {
        //統一設置100寬度
        foreach (DevExpress.XtraGrid.Columns.GridColumn column in this.winGridViewPager1.gridView1.Columns)
        {
            column.Width = 100;
        }
        //Name,Sex,BirthDate,Height,Weight,City,Area,State,Favorites,Introduction,Creator,CreateTime
        //可特殊設置特別的寬度
        SetGridColumWidth("BirthDate", 120);
        SetGridColumWidth("CreateTime", 120);
        SetGridColumWidth("Introduction", 200);
        SetGridColumWidth("Favorites", 200);
    }
}

這樣,基於開發框架基礎上就完成了這種直接錄入數據的處理實現了,非常方便,當然如果直接利用沒有封裝的GridView處理,基本上也是沒有太多變化,思路一樣的。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • CentOS6.5查看防火牆的狀態: 顯示結果: CentOS 6.5關閉防火牆 CentOS 7.2關閉防火牆 CentOS 7.0預設使用的是firewall作為防火牆,這裡改為iptables防火牆步驟。 firewall-cmd --state #查看預設防火牆狀態(關閉後顯示notrunn ...
  • # cd /etc/yum.repos.d/ # mv CentOS-Base.repo CentOS-Base.repo.bak # wget http://mirrors.163.com/.help/CentOS6-Base-163.repo # mv CentOS6-Base-163.repo... ...
  • 原文地址:http://blog.csdn.net/ausboyue/article/details/52775281 Linux SSH命令錯誤:ECDSA host key "ip地址" for has changed and you have requested strict checking... ...
  • 原文地址:http://www.cnblogs.com/cocowool/archive/2012/07/05/2578487.html YUM代理設置 編輯/etc/yum.conf,在最後加入 # Proxy proxy=http://username:password@proxy_ip:por... ...
  • 1、Bin 目錄 用來存放編譯的結果,bin是二進位binary的英文縮寫,因為最初C編譯的程式文件都是二進位文件,它有Debug和Release兩個版本,分別對應的文件夾為bin/Debug和bin/Release,這個文件夾是預設的輸出路徑,我們可以通過:項目屬性—>配置屬性—>輸出路徑來修改。 ...
  • 1、在程式最前面加: #define _CRT_SECURE_NO_DEPRECATE 2、在程式最前面加: #pragma warning(disable:4996) 3、把scanf改為scanf_s; 4、無需在程式最前面加那行代碼,只需在新建項目時取消勾選“SDL檢查”即可; 5、若項目已建 ...
  • 一、下麵是在創建一個新的項目是我最常用的,現在對他們一一做一個詳細的介紹: 1、Win32控制台應用程式我平時編寫小的C/C++程式都用它,它應該是用的最多的。 2、名稱和解決方案名稱的區別:名稱是項目的名稱,一個解決方案中可以包含多個項目,所以解決方案名稱包含項目名稱。 3、新建Git存儲庫(G) ...
  • 應用場景 應用場景 angular2(下文中標註位NG2)項目和.net mvc項目分別開發,前期採用跨域訪問進行並行開發,後期只需要將NG2項目的生產版本合併到.net項目。 NG2項目概述 NG2項目概述 ng2項目採用的是angular-cli搭建的框架。 使用type script、rxjs ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...