The DataGridView is a control found in the .Net Framework starting at version 2.0. It is used to display and edit tabular data from many different kinds of data sources.
25
votes
8answers
11k views
Horrible redraw performance of the DataGridView on one of my two screens
I've actually solved this, but I'm posting it for posterity.
I ran into a very odd issue with the DataGridView on my dual-monitor system. The issue manifests itself as an EXTREMELY slow repaint of ...
19
votes
3answers
17k views
simple DataGridView refresh question
whats the best way to refresh a DataGridView when you update the base data source?
i'm updating the datasource frequently and wanted to display the outcome to the user as it happens.
i've got ...
15
votes
5answers
8k views
C#: Custom sort of DataGridView
I need to sort a DataGridView with Natural Sorting (Like in Explorer) so that numbers and text (in the same column) are sorted naturally, and not alphabetically (so that "place 3" comes before "place ...
14
votes
4answers
12k views
How to bind a string list to a datagrid?
it looks pretty easy and there must be a way to do it: i have a simple List<string> and i would like it to be displayed in a column in dataGrid. if these were some more complex objects i would ...
12
votes
2answers
5k views
Binding to DataGridView - Is there a way to “bind” the background color of a cell?
I am binding a List to a DataGridView. One property of the SomeObject class will be a status code (ex. Red, Yellow, Green). Can I "bind" the status to the background color of a cell easily? How about ...
11
votes
4answers
295 views
How do I override Microsoft's datagridview to allow back buffering in VB.NET?
My datagridview flickers and is very slow while loading. I reflectored the datgridview from Microsoft and discovered that there is a back buffer property which is not visible from the winForm. How ...
11
votes
2answers
4k views
List<T> vs BindingList<T> Advantages/DisAdvantages
Can someone describe what the difference between the two are for my project.
Currently I have a List<MyClass> and set the BindingSource to that and a DataGridView to the BindingSource.
I have ...
11
votes
2answers
4k views
BindingList<> ListChanged event
I have a BindingList<> of a class set to the DataSource property of a BindingSource, which is in turn set to the DataSource property of a DataGridView.
1.
It is my understanding that any additions ...
11
votes
2answers
12k views
WPF DataGrid - Button in a column, getting the row from which it came on the Click event handler
I've set the itemsource of my WPF Datagrid to a List of Objects returned from my DAL. I've also added an extra column which contains a button, the xaml is below.
<toolkit:DataGridTemplateColumn ...
11
votes
6answers
26k views
C# Iterate Over DataGridView & Change Row Color
I have a datagridview made up of multiple rows and columns.
I want to iterate through each row and check the contents of a specific column.
If that column contains the word "NO", I want to change the ...
11
votes
4answers
8k views
How do you automatically resize columns in a DataGridView control AND allow the user to resize the columns on that same grid
I am populating a DataGridView control on a Windows Form (C# 2.0 not WPF).
My goal is to display a grid that neatly fills all available width with cells - i.e. no unused (dark grey) areas down the ...
11
votes
2answers
4k views
How do I position a DataGridView to a specific row (so that the selected row is at the top)
I have an application with a DataGridView on it and I would like to position the rows such that a specific row is at the top of the list.
I don't want a sort, I want a way to programmatically tell ...
9
votes
3answers
13k views
Good DataGridView tutorial
I'm writing a windows C# application which I wish to use data grid views, but unable to find a good tutorial on to take complete control of the datagrid eg: add columns, add data etc.
8
votes
3answers
1k views
DataGridView: How to make some cells unselectable?
How can I make some cells in DataGridView unselectable?
By 'unselectable' I mean: It cannot be selected in any way and trying to select it won't unselect any other cell.
I don't mean ReadOnly. My ...
8
votes
2answers
224 views
How to know whether the user is scrolling the datagridview
I wish to know whether a user is scrolling the DataGridView.
While the user is scrolling the DataGridView I wish to suspend a running thread and resume this thread as soon as the user stops ...
8
votes
1answer
1k views
Problem in Updating DataGridView via a thread ( when Scrolling )
I am stuck with this problem of mine and it will be great help if someone solves this
problem for me
What I am trying to do is :
1) Intialize a DataTable datatable in form load event and assign ...
8
votes
2answers
257 views
Is there a way to make DataGridViewCheckBox Cells smaller?
As described in this question it appears the minimum row height for a row in a DataGridView (WinForm not WPF) is 17 if you wish to display check boxes in a DataGridViewCheckBoxCell. Any smaller and ...
8
votes
1answer
12k views
Disable selection of rows in a datagridview
I want to disable the selection of certain rows in a datagridview.
It must be possible to remove the select property for one or more datagridview rows in a datagridview shown in a winform. The goal ...
7
votes
1answer
96 views
WinForm binding radio button
I use VS2010 and then drag and drop Member datagridview to design view.
After that I drag and drop name member textfield to design view and then try to edit and save. It's work properly.
And then I ...
7
votes
2answers
180 views
Saving DataGridView
I open two files into 2 seperate DGVs.. Once opened and the button "Format" is clicked, it matches all of the lines in the two seperate DGVs and copies it into a new DGV.
The first DGV looks like ...
7
votes
6answers
492 views
How to make this(refer image) type of graph in datagridview
I wish to add this type of graph in my datagridviewcontrol :-
Here the graph is to plotted for 12 months and I can either input percentages or comparative values in pixels for the 12 ...
7
votes
4answers
679 views
How to find a row exists in datagridview and append it to the last row of the datagridview
I am having a gridview that will have 2 rows with some data as follows
101 111111111 1111111111009270754A094101// My first row data
9000002 ...
7
votes
3answers
3k views
Binding LINQ query to DataGridView
This is very confusing, I use AsDataView to bind query result to a dgv and it works fine with the following:
var query = from c in myDatabaseDataSet.Diamond where c.p_Id == p_Id select c;
...
7
votes
1answer
430 views
DataBinding woes
So I have this datagridview that is linked to a Binding source that is binding to an underlying data table. The problem is I need to manual add rows to the datagridview.
This cannot be done while it ...
7
votes
3answers
1k views
Does the Windows Forms DataGridView implement a true virtual mode?
I have a SQL table containing currently 1 million rows that will grow over time.
There is a specific user requirement to present a sortable grid that displays all rows without paging. The user ...
7
votes
3answers
2k views
Data bind enum properties to grid and display description
This is a similar question to How to bind a custom Enum description to a DataGrid, but in my case I have multiple properties.
public enum ExpectationResult
{
[Description("-")]
NoExpectation,
...
7
votes
1answer
8k views
How to bind list to dataGridView?
I seem to be running around in circles and have been doing so in the last hours.
I want to populate a datagridview from an array of strings. I've read its not possible directly, and that I need to ...
7
votes
7answers
9k views
StackOverflowException without recursion or infinite loop?
Background
I have a DataGridView control which I am using, and I added my handler below to the DataGridView.CellFormatting event so the values in some cells can be made more human-readable. This ...
7
votes
5answers
8k views
Programmatically change selection on DatagridView (.NET)
I'm learning VB.NET.
I've a problem with DataGridView component when trying to set the value of the CurrentCell.
What i'm trying to do is :
I've a DataGridView With values.
I want to make a ...
7
votes
8answers
3k views
Replacing a DateTime.MinValue in a DataGridView
I am working on a name record application and the information is stored in a SQLite database. All columns in the database are TEXT types, except for the date of birth column, which is a DATETIME. The ...
7
votes
9answers
15k views
C# - Printing a .NET DataGridView
I am fairly new to .NET and C#, but I have a DataGridView that I would like to print. What would be the best way to go about doing so?
Thanks in advance!
7
votes
4answers
4k views
How to manually drop down a DataGridViewComboBoxColumn?
I have a DataGridView with one DataGridViewComboBoxColumn in my WinForms application. I need to drop down (open) this DataGridViewComboBoxColumn manually, let's say after a button is clicked.
The ...
6
votes
2answers
126 views
how to avoid the repeated code to increase the efficiency
I have a DataGrid view1 and a ListView and when ever I select the list view item(I am passing the ListView item into the query and populating the DataGrid view according that item)
I have wrote some ...
6
votes
1answer
291 views
Display a .exe.config file in a datagridview and manipulate the settings
I'm working on a GUI that is able to manipulate xml files through a datagridview and have it saved to a destination of the user's choice. This program also has a .exe.config file in which I would also ...
6
votes
4answers
467 views
Export Datagridview records to Excel
Hey friends i need to export records of datagridview of winform to MSExcel. I want to do it without using any DLL i.e., with the buid in properties of C#. So is there any good solution for my ...
6
votes
2answers
1k views
Direct access to DataGridView combobox in one click?
I'm getting annoyed with clicking once to select a row in the datagridview, and then clicking again to click on a control in that row (in this case a combobox).
Is there a way configure this thing so ...
6
votes
3answers
9k views
C# datagridview right click select row and show menu to delete it
I have few columns in my DataGridView, and there is data in my rows,
I saw few solutions in here, but I can not combine them!
simply a way to right-click on a row, it will select the whole row and ...
6
votes
2answers
3k views
DataGridView throwing “InvalidOperationException: Operation is not valid…” when adding a row
I want an OpenFileDialog to come up when a user clicks on a cell, then display the result in the cell.
It all works, except that the DataGridView displays an extra row, for adding values to the list ...
6
votes
1answer
2k views
Can you use ScrollIntoView() with a PagedCollectionView in a Silverlight DataGrid?
Is it possible to scroll to a particular row (by object identity) in a Silverlight DataGrid that has an ItemsSource which is a PagedCollectionView.
I am loading a list of orders that are grouped by ...
6
votes
4answers
3k views
C# WinForms DataGridView background color rendering too slow
I'm painting my rows in a DataGridView like this:
private void AdjustColors()
{
foreach (DataGridViewRow row in aufgabenDataGridView.Rows)
{
AufgabeStatus ...
6
votes
4answers
5k views
WPF DataGrid how to get when ItemsSource updates
Which event fires when DataGrid's source is updating? I've tried DataContextChanged and SourceUpdated but it never worked out.
Actually I need a simple thing. I want, if there is a new row comes, ...
6
votes
4answers
9k views
DataGridView bound to a Dictionary
I have a Dictionary that contains items and prices. The items are unique but slowly get added and updated through the lifetime of the application (that is, I don't know the item strings in advance). I ...
6
votes
10answers
33k views
Adding Text to DataGridView Row Header
Does C# allow you to add a String to a RowHeader in a DataGridView? If so, how is it accomplished?
I'm writing a Windows Form to displayed Customer Payment Data for the year so far.
The ...
6
votes
3answers
923 views
DataGridView: Change Edit Control size while editing
in the DataGridView I want the cell size to expand according to the string length when I edit the cell. Excel does the same.
In the DataGridView, when entering edit mode, a ...
6
votes
4answers
17k views
DataGridViewComboBoxCell Binding - “value is not valid”
I'm trying to bind separate ComboBox cells within a DataGridView to a custom class, and keep getting a "DataGridViewComboBoxCell value is not valid" error.
I'm currently assigning the data source for ...
6
votes
5answers
4k views
Allow user to sort columns from a LINQ query in a DataGridView
I can't quite work out how to allow a DataGridView populated at runtime to sort (when users click on the column headers) where a LINQ from XML query is the DataSource, via a BindingSource.
Dim ...
6
votes
4answers
6k views
WinForms - DataGridView - no cell selected
Is there a way to make a DataGridView have no cell selected? I notice even when it loses focus() it has a at least one active cell. Is there another mode that allows this? or some other trick?
6
votes
7answers
11k views
How to get keypressed, keydown events from DataGridView data cells
I need to receive the key press events during cell editing in DataGridView control.
From what I have found on the net the DataGridView is designed to pass all key events from DataGridView to the cell ...
6
votes
1answer
5k views
Column cannot be added because its CellType property is null exception
I have trouble with the following piece of code. When I go through with the debugger I get an exception when it comes to the following line:
dgvCalls.Columns.Insert(1, msisnnColumn);
I get an ...
5
votes
1answer
82 views
Hide Scrollbars In DataGridView
I have selected 'None' for the ScrollBars property, but this prevents me from scrolling with the mousewheel. I would either like to remove scrollbars or hide them, while still allowing the mousewheel ...