The built-in editors provide a lot of flexibility and power, but in some cases you may want to use external controls as specialized editors. For example, you may want to use the C1NumericEdit control that provides a drop-down calculator for entering numbers, or an editor for selecting from multi-column lists, or a specialized control that you wrote to edit your business objects.
Any control that derives from the base Control class can be used as a basic grid editor. Controls that implement the IC1EmbeddedEditor interface can provide better integration with the grid and more advanced features. For details on the IC1EmbeddedEditor interface, see the Editor property.
To use a control as a custom editor, all you have to do is associate an instance of the control with a grid column using the Editor property. You can do this in code using the Editor property. After that, the control will be automatically used by the grid.
For example, to use a C1NumericEdit control as a grid editor, follow these steps:
To write code in Visual Basic
Visual Basic |
Copy Code
|
---|---|
' Set up the custom editor. Me.C1NumericEdit1.BorderStyle = BorderStyle.None Me.C1NumericEdit1.Visible = False |
To write code in C#
C# |
Copy Code
|
---|---|
// Set up the custom editor. this.c1NumericEdit1.BorderStyle = BorderStyle.None; this.c1NumericEdit1.Visible = false; |
To write code in Visual Basic
Visual Basic |
Copy Code
|
---|---|
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ' Assign the custom editor to the grid. Me.C1TrueDBGrid1.Columns(0).Editor = Me.C1NumericEdit1 End Sub |
To write code in C#
C# |
Copy Code
|
---|---|
private void Form_Load(object sender, EventArgs e) { // Assign the custom editor to the grid. this.c1TrueDBGrid1.Columns[0].Editor = this.c1NumericEdit1; } |
Run the project and edit some values in the first column. Notice how the grid positions and initializes the C1NumericEdit control so you can edit cell values. When you are done editing a cell, click a different cell or press the TAB key to move to the next one. Notice how the new value is applied to the cell.