एसएसएमएस ग्रिड सी ++ नहीं है, यह एक सूची दृश्य नहीं है और न ही डेटाग्रिड है, यह विंडोज़ देशी नियंत्रणों का उपयोग नहीं करता है, यह "बस" एक कस्टम .NET नियंत्रण है जिसका नाम GridControl
है (एक Microsoft.SqlServer.Management.UI.Grid
में) नामस्थान) जो Microsoft.SqlServer.GridControl.dll नामक असेंबली से संबंधित है।
आप इसे विभिन्न स्थानों पर पा सकते हैं:GAC , %ProgramFiles(x86)%\Common Files\Microsoft Shared\SQL Server Developer Tools
में , %ProgramFiles(x86)%\Microsoft SQL Server Management Studio 18\Common7\IDE
में , विजुअल स्टूडियो फाइलों आदि में।
यह एक पुनर्वितरण योग्य बाइनरी AFAIK नहीं है, इसलिए आपको इसे शिप नहीं करना चाहिए, यह दस्तावेज नहीं है, और यह दूसरों की तरह पूर्ण-विशेषीकृत ग्रिड नहीं है। हालांकि, जैसा कि आपको पता चला, यह हल्का है और यह आपके अंतर्निहित डेटा एक्सेस जितना तेज़ हो सकता है।
यदि आप इसके साथ खेलना चाहते हैं, तो यहां एक छोटा Winforms C# नमूना है (एक 10000 x 256 ग्रिड, जो 2,5 मिलियन सेल है जो तुरंत खुलता है) जो दर्शाता है कि इसका उपयोग कैसे करना है:
using System;
using System.Drawing;
using System.Windows.Forms;
using Microsoft.SqlServer.Management.UI.Grid;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
private GridControl _control = new GridControl();
public Form1()
{
InitializeComponent();
for (int i = 0; i < 256; i++)
{
_control.AddColumn(new GridColumnInfo { HeaderType = GridColumnHeaderType.Text, IsUserResizable = true });
_control.SetHeaderInfo(i, "Column " + i, null);
}
_control.Dock = DockStyle.Fill;
_control.GridStorage = new GridStorage();
Controls.Add(_control);
}
}
// represents a datasource
public class GridStorage : IGridStorage
{
public long EnsureRowsInBuf(long FirstRowIndex, long LastRowIndex)
{
return NumRows(); // pagination, dynamic load, virtualization, could happen here
}
public void FillControlWithData(long nRowIndex, int nColIndex, IGridEmbeddedControl control)
{
// for cell edition
control.SetCurSelectionAsString(GetCellDataAsString(nRowIndex, nColIndex));
}
public string GetCellDataAsString(long nRowIndex, int nColIndex)
{
// get cell data
return nRowIndex + " x " + nColIndex;
}
public int IsCellEditable(long nRowIndex, int nColIndex)
{
return 1; // 1 means yes, 0 means false
}
public long NumRows()
{
return 10000;
}
public bool SetCellDataFromControl(long nRowIndex, int nColIndex, IGridEmbeddedControl control)
{
// when a cell has changed, you're supposed to change your data here
return true;
}
public Bitmap GetCellDataAsBitmap(long nRowIndex, int nColIndex) => throw new NotImplementedException();
public void GetCellDataForButton(long nRowIndex, int nColIndex, out ButtonCellState state, out Bitmap image, out string buttonLabel) => throw new NotImplementedException();
public GridCheckBoxState GetCellDataForCheckBox(long nRowIndex, int nColIndex) => throw new NotImplementedException();
}
}
यहां है कि यह कैसा लग रहा है। आप एक अच्छे कंप्यूटर पर बिना किसी मंदी के स्क्रॉल कर सकते हैं।