真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何使用ComponentOne提高.NETDataMap中的加載速度

這篇文章主要介紹了如何使用ComponentOne提高.NET DataMap中的加載速度,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)建站從2013年創(chuàng)立,先為吉安等服務(wù)建站,吉安等地企業(yè),進行企業(yè)商務(wù)咨詢服務(wù)。為吉安企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

概述

  1. FlexGrid for WinForm 采用了最新的數(shù)據(jù)綁定技術(shù),并與Microsoft .NET Framework無縫集成。 因此,您可以獲得易于使用的靈活網(wǎng)格控件,用于創(chuàng)建用戶友好界面,以顯示、編輯、格式化、組織、匯總和打印表格數(shù)據(jù)。

  2. FlexGrid的DataMap屬性允許您實現(xiàn)“已翻譯”的行或列。在轉(zhuǎn)換的行或列中,網(wǎng)格不顯示存儲在單元格中的值。相反,它會在列的DataMap中查找這些值并顯示映射的值。

  3. 有時您可能需要在C1FlexGrid / C1FlexGridClassic中使用DataMap來顯示項目列表。即使列表包含大量數(shù)據(jù),其加載也是平滑且即時的。在本文中,我們將討論如何使用自定義ComboBox編輯器以加快DataMap網(wǎng)格的加載時間。

創(chuàng)建編輯器并在Grid中托管它

所有內(nèi)置網(wǎng)格編輯器都實現(xiàn)IC1EmbeddedEditor接口,ComponentOne Input庫中的控件也是如此。 如果我們想要使用帶有C1FlexGrid的第三方編輯器,我們需要創(chuàng)建一個派生類并實現(xiàn)此接口。

實現(xiàn)步驟

創(chuàng)建一個模型類MyComboItem來綁定ComboBox。

public class MyComboItem

{
    public int Id { get; set; }
    public string Display { get; set; }}

創(chuàng)建一個自定義控件MyComboBox,它繼承ComboBox類并實現(xiàn)IC1EmbeddedEditor接口。

public partial class MyComboBox : ComboBox, IC1EmbeddedEditor    {
        public MyComboBox()
        {
            InitializeComponent();
        }
        #region IC1EmbeddedEditor-Members        // Initialize editor: select transferred value
        public void C1EditorInitialize(object value, IDictionary editorAttributes)
        {
                this.SelectedValue = value;
        }
        //Get value from editor
        public object C1EditorGetValue()
        {
            return (base.SelectedItem as MyComboItem)?.Id; 
        }
        //Value is always TRUE
        public bool C1EditorValueIsValid()
        {
            return true;
        }
        //Adjust editor size
        public void C1EditorUpdateBounds(Rectangle rc)
        {
            if (rc.Height != -1 && rc.Width != -1)
            {
                this.Location = new Point(rc.X, rc.Y);
                this.Width = rc.Width;
                this.Height = this.DefaultSize.Height;
            }
            else
            {
    //Editor has scrolled out of the picture. Take over the height / width of -1.
                this.Width = -1;
                this.Height = -1;
            }
        }
        //TRUE if Escape or Enter
        public bool C1EditorKeyDownFinishEdit(KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Escape || e.KeyCode == Keys.Enter)
                return true;
            return false;
        }
        //Format and editor value
        public string C1EditorFormat(object value, string mask)
        {
            return null;
        }
       //Style of Editors
        public UITypeEditorEditStyle C1EditorGetStyle()
        {
            return UITypeEditorEditStyle.DropDown;
        }
        #endregion    }}

創(chuàng)建MyComboBox類的實例,并將其分配給網(wǎng)格的列編輯器,如下所示:

Dictionary DMap = new Dictionary();
            ComboBox c1 = new MyComboBox();
            List _list = new List();              
            c1.DataSource = _list;
            c1.ValueMember = "Id";
            c1.DisplayMember = "Display";            
            _flex.Cols[2].Editor = c1;
           _flex.Cols[2].DataMap = DMap; //use DataMap to show IDs as values.

感謝你能夠認真閱讀完這篇文章,希望小編分享的“如何使用ComponentOne提高.NET DataMap中的加載速度”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學習!


文章標題:如何使用ComponentOne提高.NETDataMap中的加載速度
文章路徑:http://weahome.cn/article/gijpdi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部