Top "Datagrid" questions

A graphical user interface element that presents a tabular view of data.

Accessing UI (Main) Thread safely in WPF

I have an application which updates my datagrid each time a log file that I'm watching gets updated (Appended with …

c# .net wpf multithreading datagrid
How do I bind a List<CustomObject> to a WPF DataGrid?

I'm new to WPF and want to do some basic databinding. I have a List of a CustomObject and want …

c# wpf data-binding datagrid
WPF Datagrid set selected row

How do I use the Datagrid.SelectedItem to select a row programmatically? Do I first have to create a IEnumerable …

wpf select datagrid selecteditem
How do I bind a WPF DataGrid to a variable number of columns?

My WPF application generates sets of data which may have a different number of columns each time. Included in the …

c# wpf xaml data-binding datagrid
How do I make XAML DataGridColumns fill the entire DataGrid?

I am using DataGrids in XAML (not Silverlight) with resizable columns, the DataGrid will expand if the user resizes the …

c# wpf xaml datagrid wpf-controls
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 can I enable scrollbars on the WPF Datagrid?

When I run the following Northwind WPF Toolkit Datagrid code from this article, I get a datagrid, but there are …

wpf datagrid scroll
Adding a Button to a WPF DataGrid

I want to create a DataGrid control in WPF in which there is a button in the first cell of …

c# wpf xaml datagrid
Date formatting in WPF datagrid

I want to change is the date column from a format "DD/MM/YYYY HH:MM:SS" to "DD.MM.…

c# wpf datagrid date-formatting
How can I disable editing cells in a WPF Datagrid?

I'm constructing a datagrid in Windows Presentation Foundation, and I have a problem. When a user double-clicks on a cell …

wpf datagrid wpfdatagrid cells