Top "Wpfdatagrid" questions

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

filter wpf datagrid values from a textbox

I have a textbox and a Datagrid. The datagrid has two columns name and Email address. I want to Filter …

wpf wpfdatagrid wpf-4.0
Dynamically add Columns to DataGrid in wpf

I am currently working on a custom canvas and in that i have to add a table,So i thought …

c# wpf wpfdatagrid drawingvisual
Remove lines from datagrid

Can we remove the lines between every row of datagrid? so that it look like listview (so that only data …

wpf wpfdatagrid
How to access datagrid template column textbox text WPF C#

I need to access the text in a DataGrid's template column from code behind, but I don't know how. I …

wpf datagrid wpfdatagrid datagridtemplatecolumn
WPF Datagrid binding custom column headers

I am trying to figure out how to bind a WPF DataGrid's column header and main data to a data …

wpf datagrid binding wpfdatagrid columnheader
Using WPF DataGridComboBoxColumn with MVVM - Binding to Property in ViewModel

I'm using the excellent MVVM Light Toolkit. My ViewModel exposes: public const string CourtCodesTypeCourtPropertyName = "CourtCodesTypeCourt"; private List<CourtType> _…

wpf mvvm wpfdatagrid mvvm-light
WPF DataGridTemplateColumn. Am I missing something?

<data:DataGridTemplateColumn Header="Name"> <data:DataGridTemplateColumn.CellTemplate> <DataTemplate> <TextBlock Text="{Binding Name}"> &…

wpf datagrid focus wpfdatagrid wpftoolkit
WPF DataGrid column widths and reordering

I have a DataGrid defined as <wpftoolkit:DataGrid x:Name="AccountsDataGrid" AutoGenerateColumns="False" ItemsSource="{Binding Path=Accounts}" ColumnReordered="DataGrid_…

wpf xaml datagrid wpfdatagrid column-width
DataGrid's CellEditingTemplate and focus in edit mode

I am having an issue with WPFToolkit DataGrid when a column is customized supplying both CellTemplate and CellEditingTemplate. If you …

c# wpf xaml wpftoolkit wpfdatagrid