New and improved DataGrid control for Windows Presentation Foundation (WPF) applications. Can be bound to a multitude of datasources. Flexible, programmable rendering options to match custom user interfaces.

learn more… | top users | synonyms

0
votes
2answers
68 views

'System.Windows.Data.BindingListCollectionView' view does not support filtering

I have a datagrid and a combobox in my application. I have to filter the datagrid on combobox selected item, I tried to implement the CollectionViewSource.Filter Event in my app, but I get this error. ...
0
votes
1answer
32 views

Inserting item into DataGrid

I have the following tables: I'm using Entity Framework Database First, therefore the following entity class is generated: public partial class Sal1 { public string SaleID { get; set; } ...
0
votes
1answer
55 views

Load XmlData from xml file to datasource(observableCollection)

Actually I want to populate dataGrid with Xml data present in xmlfile and want to add/remove/update the data in the Datagrid. I tried using XmlDataprovider which works fine in populating the dataGrid ...
0
votes
0answers
74 views

WPF datagridview xml binding

I have strange additional columns when using a WPF datagridview with XML data binding. Here are my .xaml, .xml files and what I see on designer. MainWindow.xaml : <Window ...
0
votes
1answer
206 views

WPF add datagrid row from other window

I have an add movie window: private void button1_Click(object sender, RoutedEventArgs e) { string name = txtName.Text; string genre = txtGenre.Text; bool ...
2
votes
1answer
203 views

WPF DataGrid display multiple types

What is the best way to display multiple types of data in a WPF datagrid. For example for categories and products: | Product Name | Description | Price | --------------------------------------- IT ...
1
vote
1answer
166 views

How to get Visual child of WPF DataGrid using MVVM?

The view having one DataGrid and The ViewModel having the following function public DependencyObject ScrollViewer(DependencyObject targetControl) { if (targetControl is ScrollViewer) ...
1
vote
2answers
166 views

Looping through DataSet table

I have installed VS 2012 after many years using VS 2010 and I can't even manage to loop through table rows anymore (which was a doddle before) and it is absolutely critical to my project. I tried ...
1
vote
1answer
83 views

WPF: Adding to a datagrid from various Lists

I have various lists of values that I am reading in through a text file for a data logging application. My end goal is to have a Data grid with a column for each value. Here is a basic outline of what ...
0
votes
1answer
53 views

Referencing a cell in WPF datagrid

I have a WPF DataGrid as below: My questions are: How do I perform the calculation of the "total" column based on Price * Quantity? Is there a way to automatically adjust the column width of the ...
3
votes
1answer
573 views

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 dataGrid would be fine. SO i Want to create a "Table" from "Datagrid" by which user can add a table to the ...
0
votes
1answer
50 views

DataGridCheckBoxColumn checkbox formatting

How do I add a 1-pixel top-margin to the checkbox in a DataGridCheckBoxColumn? Any help in this regard would be greatly appreciated....
0
votes
1answer
41 views

Translating numeric value in DataTable for editing without marking as Modified

I have a sql table which I read into a DataTable. One of the columns is a decimal proportion, but I would like value to be displayed as a percentage for user editing (i.e. multiplied by 100). Is there ...
0
votes
0answers
12 views

Number entry problems in DataGrid

I have a DataTable (which was populated from a sql db table), and a DataView created from that DataTable, used as the ItemsSource for a DataGrid. One of the columns of the table is of type decimal ...
1
vote
2answers
72 views

Visual Tree Finder is returning null while searching for Data Grid

I have Tab Control which has many tab items, I am checking Data Grid Items Count while closing tab items. For the first time it works fine(I mean in first iteration). After closing one tab item, in ...
0
votes
0answers
32 views

How Can I show collection of collection bind to DataGrid?

In the article How to: Group, Sort, and Filter Data in the DataGrid Control we Can file instruction how to get this nice view. I wonder how to achieve the same but source collection is not flat ...
1
vote
0answers
60 views

Datagrid matrix

Is this the right way to create a Data Matrix from XAML side. I tried using the RowHeaderTemplate, to set the Row Header. XAML <DataGrid Grid.Column="1" Margin="29,31,1044,591" Grid.Row="1" ...
2
votes
2answers
137 views

Set dynamic images to Autogenerated columns in WPF Datagrid

DataGrid is declared like that <DataGrid x:Name="DgDirectories" AutoGenerateColumns="True" /> It is dynamically populated using DgDirectories.ItemSource property with ...
1
vote
1answer
185 views

Creating ItemTemplate for DataGrid with C#

Here is the XAML. I want to do the same thing with C#. <DataGrid x:Name="myDataGrid"> <DataGrid.Columns> <DataGridTemplateColumn Header="Address"> ...
0
votes
0answers
38 views

WPF DataGrid to generate columns from a collection

I have a form where user lands by selecting some start and end date. So the form has to load with those many days in the users selection as grid columns. So How do i generate these columns == number ...
2
votes
1answer
64 views

set ItemTemplate for specific column of DataGrid

I have a WPF DataGrid and it is bound to List<Person> people. public class Person { public string Name{get;set;} public string LastName{get;set;} public string Address{get;set;} ...
0
votes
2answers
55 views

How can I make a constant string available to my code and a DataGrid?

I have a Window with a DataGrid in it. My DataGrid handles the BeginningEdit event. I want to run some code that possibly cancels the BeginningEdit event based on the name of the column. For ...
1
vote
2answers
111 views

Display datagrid details from the combobox selecteditem

I have a combobox and a datagrid in my application. The datagrid has its itemsSource from its collectionViewSource and there are three ComboBoxItem's in the combobox as warning/error/exception as ...
0
votes
3answers
173 views

How do I prevent a DataGridTemplateColumn from going into edit-mode based on some condition?

I have a DataGridTemplateColumn that is editable. I only want the user to be able to edit the content of a cell in this column if the business object satisfies some criterion. Suppose my business ...
1
vote
0answers
71 views

Refreshing a datagrid in a new window c# WPF MVP pattern

Hi everyone I use Visual Studio 2010 with WPF and C# with the model view presenter pattern. I have some issues though. I have a search function which filters my observable collection based on some ...
1
vote
2answers
838 views

WPF Datagrid Style Selected Row

I have a wpf 4.5 application that has a datagrid in a usercontrol. I designed the style for the datagrid in Blend but when I copy the style into my VS 2012 project it is not working properly. Here ...
0
votes
0answers
9 views

WPF DataGrid column

I have a WPF application in which I have a DataGrid and on Page Load Event I am filling that Grid from Database which is running good. The problem is that I don't want to fill each column from ...
0
votes
1answer
103 views

WPF datagrid dropdown two-way binding

I'm trying to get a dropdown column in a WPF datagrid (hosted in a user control derived from a base class called ControlBase) to bind properly. It initially populates fine from the object, and a ...
2
votes
3answers
83 views

Can I reliably consume a WPF custom control in a winform?

My requirement is to create a winform with contains a datagrid that allows rows to expand and show additional details. I'm considering using a WPF control and incorporate a WPF Datagrid in it to ...
0
votes
1answer
359 views

WPF Datagrid Row Height To Match Datagrid Height Without Scroll

I have a user control that have a Datagrid with customized DataTemplate as below :- <UserControl x:Class="POCSurveySystem.UI.Windows.QuestionListing" ...
0
votes
0answers
20 views

fire event after time lapse of inactivity in WPF MVVM

In WPF MVVM how do I test if a there has been no event on my DataGrid and then i fire a refresh method
0
votes
0answers
48 views

cannot append a row to datagrid WPF

I scratched my head a lot and worked also, but still not able to add a row to a datagrid. I mean i cannot append, when ever i am adding a new row the previous data is going away and only tht one row ...
0
votes
1answer
143 views

refresh datagrid items without losing selected row - XAML

I have two datagrid's ( Master/detaiL). I refresh my window using DispatcherTimer for every 5 secs. when I select any row on my Master grid, the focus on the selected row stays only for those 5 secs, ...
0
votes
2answers
227 views

add and retrive data from datagrid, WPF

I want to add data on button click to a datagrid. Suppose a datagrid with 3 headers, namely ITEM, QUANTITY, PRICE. Now when a user click for first time i shld get data in first row like this. 1 1 ...
1
vote
1answer
88 views

Center datagrid combobox text

How can I center the text of ComboBox columns in a DataGridView? The DataGrid is dynamically updated with columns of different types: foreach (Fields field in fields) { ...
0
votes
1answer
119 views

Define resources in C# instead of xaml

I would like to access to my staticData using a usercontrol in c#. But in order to do that i think i need to define resources in C# instead of xaml. Can anyone help me? Everything in project is ...
1
vote
1answer
54 views

How to modify width of the button which placed under DataGridSelectAllButton in WPF DataGrid?

I need to modify Width of DataGridSelectAllButton so i change that using code below: <ControlTemplate x:Key="DataGridControlTemplate" TargetType="{x:Type DataGrid}"> <Border ...
0
votes
0answers
29 views

I added Expander and Grid controls to the Tab control and the controls are not getting resized along with main window

I added Expander and Grid controls to the Tab control and the controls are not getting resized along with main window though their width was set to "auto" Grid Alignment set to Stretch. How can i fix ...
0
votes
0answers
114 views

How do I add multiple controls dynamically to a DataGridTemplateColumn of a datagrid using wpf?

I need to add multiple controls to a DataGridTemplateColumn of a datagrid from code behind. It can be done using Xaml but i need to do it dynamically from code behind coz adding controls are based on ...
0
votes
2answers
119 views

WPF DataGrid validation when bound to a DataView

I am attempting to validate input on a DataGrid which is populated by a DataView (e.g. myDataGrid.ItemsSource = myDataView). However, all the WPF DataGrid validation examples I have seen assume that ...
1
vote
1answer
135 views

How to bind the wpf datagrid scrollviewer visiblity to button visibility?

<Window x:Class="WPfDataGrid.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" ...
1
vote
0answers
89 views

Combobox in Datagrid Rows WPF

I want to place Comboboxes in 2nd and 4th Rows of Datagrid. How to achieve this??I searched the tutorials , there they have explained how to place comboboxes in datagrid columns ( using ...
0
votes
2answers
54 views

Dock a resizable wpf DataGrid at bottom of window

In a WPF project, I want to dock a DataGrid to the bottom of a window so that if the window resizes, I will be able to utilize more of the DataGrid. Like this: How do I do that? All my DockPanel ...
0
votes
0answers
177 views

WPF Nested binding from DataGrid row up to ListView 'CurrentItem'

I'm just tangling with an awkward nested binding issue in WPF. Essentially, I'm trying to bind to a value of the 'currentItem' of the ListView control, from a DataGrid row item, based within the ...
0
votes
1answer
289 views

How to bind DataGridTemplateColumn.Visibility to a property outside of DataGrid.ItemsSource?

I need to bind the Visibility of a DataGridTemplateColumn to a property outside of the DataGrid.ItemsSource,because i need to bind this column in the all the rows to one property inside the ...
0
votes
1answer
88 views

WPF DataGrid: Disabling selection over multiple columns

I'm trying to keep the user from making cell-selections over multiple columns by hooking into the DataGrid's SelectedCellsChanged event. For some reason, though, my code behaves a little strange. ...
0
votes
0answers
96 views

WPF DataGrid, Single click edit causes UI refresh problems

I have a DataGrid with Single click editing feature, implemented using Behaviors. The DataGrid has TextBox and ComboBox columns both using CellEditingTemplates. If user clicks on one of the TextBox ...
0
votes
0answers
117 views

Issue to get wpf datagrid scrollviewer visibility by dynamically

private void Window_Loaded(object sender, RoutedEventArgs e) { //Some logic to fill the data in datagrid ScrollViewer scrollview = ...
0
votes
0answers
33 views

Binding in datagrid combobox

I have a datagrid and two combobox in datagrid. I want to display result into those combobox through binding one combobox gives serial number and other losscode <DataGrid Name="SNLossGrid" ...
0
votes
1answer
255 views

Need help on updating mysql database from wpf datagrid use Two-Way binding using submit command

basically i'm new in C# and WPF, i have a WPF DataGrid that bind with DataTable here the XAML for DataGrid <DataGrid AutoGenerateColumns="True" CanUserAddRows="False" HorizontalAlignment="Left" ...

1 2 3 4 5 27