A graphical user interface element that presents a tabular view of data.
I need to implement a custom copy + cut + paste for data (not text or CSV) to be copied between grids …
c# wpf wpfdatagrid commandbinding routed-commandsI have a simple data structure class: public class Client { public String name {set; get;} public String claim_number {set; …
c# wpf wpfdatagrid rename autogeneratecolumnI would like to set the focus on the first row of a data grid. This is what I have …
wpf wpftoolkit wpfdatagridI have a DataGrid with checkbox implemented on it using this code which I found on the internet. <my:…
c# wpf mvvm mvvm-light wpfdatagridI found the Columns collection in my datagrid, and was hoping to iterate through it to find a certain column …
wpf wpfdatagrid datagridcolumnProblem: If my DataGrid is not entirely visible (horizontal & vertical scrollbars are showing) and I click on one of …
wpf datagrid scroll wpfdatagridI want to do Header for multiple columns in WPF DataGrid. I tried with Header template but it will display …
wpf wpf-controls wpfdatagrid wpf-4.0I have something like orders table bound to a DataGrid. I want to disable editing on rows, where order date …
wpf xaml datagrid wpfdatagrid editingSo I have a WPF DataGrid, which is bound to an ObservableCollection. The collection has validation on its members, through …
wpf validation datagrid wpfdatagrid idataerrorinfoI have a problem with a ScrollViewer that I use to scroll a user control that contains a data grid. …
wpf xaml wpfdatagrid scrollviewer