Top "Datagridview" questions

DataGridView is a Windows Forms control used to display and edit tabular data.

How can I right-align text in a DataGridView column?

How can I right-align text in a DataGridView column? I am writing a .NET WinForms application.

.net winforms datagridview datagridviewcolumn
How to resize datagridview control when form resizes

I found a lot of questions about how to resize the form when a child control resizes, but I'm trying …

c# winforms datagridview resize
Search for value in DataGridView in a column

I want the user to be able to search for a number in a column in the DataGridView (dgv). The …

c# winforms datagridview datagridviewcolumn
WinForms DataGridView font size

How do I change font size on the DataGridView?

c# winforms datagridview
How to disable the ability to select in a DataGridView?

I want to use my DataGridView only to show things, and I want the user not to be able to …

c# .net winforms datagridview
How can I refresh c# dataGridView after update ?

I have a dataGridView when I click on any row a form is opened to update the row data, but …

c# datagridview
How to hide column of DataGridView when using custom DataSource?

I have a small app in c#, it has a DataGridView that gets filled using: grid.DataSource = MyDatasource array; MyClass …

c# .net datagrid datagridview datagridviewcolumn
How to disable sort in DataGridView?

How can I disable sort in DataGridView? I need to disable the header DataGridView sorting.

c# .net winforms sorting datagridview
Changing datagridview cell color based on condition

I have loaded the data from database to datagridview and have two columns target value and volume where volume >…

c# winforms datagridview
how I can show the sum of in a datagridview column?

I need to show the sum of the count column from this datagridview, but I don't know how I can …

c# winforms datagridview