We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback

How to put a grid on a form in WinForms GridControl?

Platform: WinForms |
Control: GridControl

Adding GridControl through designer and code

Step 1: Through Designer

First, make sure you have added both the Syncfusion.Shared.Base, namespace: Syncfusion.Windows.Forms and Syncfusion.Grid.Windows, namespace: Syncfusion.Windows.Forms.Grid, controls to your Toolbox. You can do this by right-clicking your Toolbox and selecting all the components in these namespaces that you can find listed under the .NET Framework Components.

Once you have the Syncfusion components in your Toolbox, you can drag and drop the GridControl component onto your form. Then you can edit the RowCount and ColCount properties of the GridControl to set the number of rows and columns.

Step 2: Through Code

By using the following code examples, you can add a Grid in a Form.

C#

using Syncfusion.Drawing;
using Syncfusion.Windows.Forms.Grid;
…
gridControl1 = new GridControl();
gridControl1.ColCount = 20;
gridControl1.RowCount = 40;
gridControl1.Location = new System.Drawing.Point(40, 20);
gridControl1.Size = new System.Drawing.Size(424, 240);
//add the grid to the Form’s control list
this.Controls.AddRange(new System.Windows.Forms.Control[] { this.gridControl1 });

VB

Imports Syncfusion.Drawing;
Imports Syncfusion.Windows.Forms.Grid
…
gridControl1 = New GridControl()
gridControl1.ColCount = 20
gridControl1.RowCount = 40
gridControl1.Location = New System.Drawing.Point(40, 20)
gridControl1.Size = New System.Drawing.Size(424, 240)
'add the grid to the Form’s control list
Me.Controls.AddRange(New System.Windows.Forms.Control() { Me.gridControl1 })

Reference Links:

Insert Grid Control in a Form through Designer

Insert Grid Control through Code

Samples:

C#: InsertGrid-CS.zip

VB: InsertGrid-VB.zip

2X faster development

The ultimate WinForms UI toolkit to boost your development speed.
ADD COMMENT
You must log in to leave a comment

Please sign in to access our KB

This page will automatically be redirected to the sign-in page in 10 seconds.

Up arrow icon

Warning Icon You are using an outdated version of Internet Explorer that may not display all features of this and other websites. Upgrade to Internet Explorer 8 or newer for a better experience.Close Icon

Live Chat Icon For mobile