How to copy and paste Multiple Cells in the WinForms GridControl by using the ContextMenuStrip?
Copy and paste the multiple cell
To copy and paste the cell value in a WinForms GridControl by using a ContextMenuStrip, you can use Copy and Paste method of the Grid.Model.CopyPaste class to copy the selected cell and paste the selected cell in desired cell location.
While right clicking on the selected range of cells to show the context menu, the selection is cleared. To avoid clearing of selection, mask the left button by setting SelectCellsMouseButtonsMask to MouseButtons.Left.
//Prevent the clearing of selection while right clicking on it
this.gridControl1.SelectCellsMouseButtonsMask = System.Windows.Forms.MouseButtons.Left;
//Set context menu for grid
this.gridControl1.ContextMenuStrip = this.contextMenuStrip1;
this.gridControl2.ContextMenuStrip = this.contextMenuStrip1;
//Add context menu items
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.copyToolStripMenuItem,
this.pasteToolStripMenuItem});
//Hook the event to copy/paste the cell values of the grid
pasteToolStripMenuItem.Click += new System.EventHandler(pasteToolStripMenuItem_Click);
copyToolStripMenuItem.Click += new System.EventHandler(copyToolStripMenuItem_Click);
private void copyToolStripMenuItem_Click(object sender, EventArgs e)
{
//Copy the selected range of cells
this.gridControl1.Model.CutPaste.Copy();
}
private void pasteToolStripMenuItem_Click(object sender, EventArgs e)
{
//Paste the content in the grid
this.gridControl2.Model.CutPaste.Paste();
}
'Prevent the clearing of selection while right clicking on it.
Me.gridControl1.SelectCellsMouseButtonsMask = System.Windows.Forms.MouseButtons.Left
'Set context menu for grid
Me.gridControl1.ContextMenuStrip = Me.contextMenuStrip1
Me.gridControl2.ContextMenuStrip = Me.contextMenuStrip1
'Add context menu items
Me.contextMenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() { Me.copyToolStripMenuItem, Me.pasteToolStripMenuItem})
'Hook the event to copy/paste the cell values of the grid
AddHandler pasteToolStripMenuItem.Click, AddressOf pasteToolStripMenuItem_Click
AddHandler copyToolStripMenuItem.Click, AddressOf copyToolStripMenuItem_Click
private void copyToolStripMenuItem_Click(Object sender, EventArgs e)
'Copy the selected range of cells
Me.gridControl1.Model.CutPaste.Copy()
End Sub
private void pasteToolStripMenuItem_Click(Object sender, EventArgs e)
'Paste the content in the grid
Me.gridControl2.Model.CutPaste.Paste()
End Sub
The following
image displays the context menu to copy and paste content of the GridControl.
Figure 1: Context menu to copy and paste content of the Gridcontrol
Samples:
Conclusion
I hope you enjoyed learning about how to copy and paste the multiple cell in the WinForms GridControl by using ContextMenuStrip.
You can refer to WinForms GridControl feature tour page to know about its other groundbreaking feature representations and WinForms GridControl documentation, and how to quickly get started for configuration specifications.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!