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
0answers
7 views

Populate a second dataGrid once I double click on a row WPF

I am still a little new to wpf and MVVM. I am trying to code a solution without breaking that pattern. I have two (well three, but for the scope of this question just two) datagrids. I want to ...
0
votes
1answer
58 views

datagrid columns more than one sources for bindind

Hello I have a datagrid which has 10 columns. The first take their values from the itemsource property of the datagrid. But the last two I want them to take their values from an other source. To be ...
0
votes
1answer
27 views

After DragDrop.DoDragDrop other controls with in the grids are not able to select(not responding)

I am working on drag and drop functionality with xamdatagrid.I have implemented the drag & drop functionality as mentioned below. 1) I have created a ...
0
votes
1answer
17 views

ContextMenu click of DataGrid in view model

I have use the following code snippet to get the ContextMenu click of DataGrid in view model Code Snippet[XAML] <DataGrid AutoGenerateColumns="True" ItemsSource="{Binding GDCSource}" ...
5
votes
4answers
1k views

Retain the user defined sort order of a WPF DataGrid

I have a WPF DataGrid that is populated using a DataSet. I have CanUserSortColumns set to true. Is it possible to retain the sorting that the user specified when the grid is refreshed? I have it ...
-1
votes
0answers
18 views

How to use Multiple pages in one window with multiple viewmodels using MVVM in WPF

I want to use multiple pages in one window (I'm using different viewmodels). Currently, when I navigate to the other page, the data is loaded but isn't showing in the window. Also, can you help me ...
0
votes
0answers
3 views

How to Change SpeciFic Datagrid Cell BAckGround Color through Code

I Want Change Specific DataGrid Cell BackGround Color in Wpf Through Code any one Suggest Me thanks
0
votes
3answers
49 views

Checkbox with DataGrid WPF

I am trying to create a DataGrid in WPF 4.0 using MVVM... Features required - Muti - Select rows using a checkbox (single click) A select all checkbox to check all the checkboxes in the datagrid ...
0
votes
1answer
27 views

Focus on DataGridCell for SelectedItem when DataGrid Receives Keyboard Focus

I have a DataGrid where the SelectedItem is bound to a VM Selected property. I have a search control that will do a find and the SelectedItem of the DataGrid changes (and scrolls into view). WPF 4.0 ...
0
votes
0answers
16 views

WPF Datagrid: issue with resizing of header

I've defined the following data grid in WPF: <Border Width="600" Height="600" Margin="10" BorderThickness="2" BorderBrush="DarkGray" CornerRadius="5"> <StackPanel Width="590" ...
30
votes
8answers
14k views

How to perform Single click checkbox selection in WPF DataGrid?

I have a DataGrid with first column as text column and second column as CheckBox column. What I want is, if I click the check box. It should get checked. But, it takes two click to get selected, for ...
0
votes
1answer
31 views

Scroll position and visible row indices in Xceed WPF grid

I'm trying to detect when the user starts scrolling down in the xceed grid control. I would like to know what the scrollbar position is, and which rows are currently being displayed on screen (indices ...
0
votes
1answer
956 views

Name cannot be found in the name scope of ---Error When displaying animation in datagrid

I have a DataGrid that displays some data. Based on some conditions I need to animate some particular cell in the DataGrid. So I created a user control that contains a label and given some animations. ...
0
votes
1answer
23 views

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 the datagrid values with the value in the textbox.
0
votes
1answer
89 views

C# 'if' Binding value revisited

I'd like to manipulate a control on the form, if the value of Closed property is true. There is a similar question describing DataTemplate triggers. I believe this is what I need, but I cannot get it ...
0
votes
0answers
43 views

error: Unable to cast object of type 'System.Windows.Controls.TextBlock' to type 'System.IConvertible'

i want to get a cell's value in datagrid wpf and i achieve this like 2,3 etc. then i want to compare an int value with this cell's value but i cannot get cell's value. how to get a cell's value ? my ...
0
votes
1answer
39 views

Updating cells in a DataGrid when other cells are changed

When I change the value of any cell in a row, I want to dynamically change other cells in the same row. For example, in the following grid, when I change 1 to 3 in the second row, the value of 5 must ...
0
votes
3answers
21 views

how can be add WPF DataGrid in Windows Form?

I am working on a datagrid in WPF and I want to add this datagrid in Winforms. How can this be done? All suggestions are welcome, thanks.
0
votes
1answer
21 views

How to get object bound to DataGridRow in Xaml?

There is DataGrid with ItemsSource as ObservableCollection. ParticipantViewModel having property named ExpenseType, Currency etc. For some specific expense types participant can change currency and ...
0
votes
1answer
75 views

WPF DataGrid and ITypedList

I tried to implement ITypedList in my ItemsSourcebut PropertyDescriptor.GetValue/SetValue are never invoked. What is wrong about it? XAML looks like this: <Window ...
0
votes
1answer
26 views

Gotfocus and lostfocus on dataGridTextColumn not possible

I've got this WPF DataGrid: <DataGrid ItemsSource="{DynamicResource TNMaps}" RowHeaderWidth="0" Width="680" AutoGenerateColumns="False" RowHeight="35" SelectionUnit="Cell" > ...
0
votes
0answers
16 views

How to prevent DataGrid getting locked(ReadOnly) on validation error

on deleting row containing validation error the WPF DataGrid becoming locked and readonly .how to prevent DataGrid getting locked(ReadOnly) on validation error
2
votes
1answer
124 views

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 need to change the text to whatever string I pass to it on the SelectionChanged event. Can someone ...
0
votes
1answer
21 views

CurrentCellChanged on cell changed only

I'm currently writing a WPF application where my DataGrid is bound to a collection of objects. I need an event that triggers when the user changes cells. This works fine when I have more than 1 ...
2
votes
3answers
1k views

Customizing Auto-Generated Columns in the DataGrid Control

After reading the excellent article on how to Customize Auto-Generated Columns, I have come across an issue. While trying to customize auto-generated columns in a DataGrid control, I want to do ...
0
votes
0answers
22 views

calculated columns into wpf DataGrid and t4 template

I opened a new WPF project in VS2012 .NET 4.5 and I added an ADO.NET Entity Data Model then Generate from database ... I added to the main window The code below <DataGrid x:Name="dg" ...
0
votes
1answer
16 views

Passing parameters to a Page using constructors

In my application I have two pages placed on a Navigation Window. Page 1 the Main Page and has three buttons on top ( like a ribbon menu) and a Frame ( on second half of the page to navigate within ...
4
votes
2answers
8k views

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> _courtCodesTypes = new ...
1
vote
1answer
55 views

how to bind multidimensional array of different values to a datagrid

I have a datagrid in my application and I would like to bind multidimensional array of bool items to the grid. how to bind the following items to the datagrid ItemsSource ? for e.g ...
0
votes
1answer
94 views

WPF Binding: cannot resolve symbol due to unknown datacontext

I try to bind a CheckBox in a DataGrid but in the designer I get while hovering over DoImport cannot resolve symbol 'DoImport' due to unknown datacontext My code is <Window ...
0
votes
1answer
89 views

Wpf DataGrid ClipboardCopyMode=“IncludeHeader” with custom header

I have a WPF table that has a custom header (based on a StackPanel) which includes a button that displays and handles setting the units of for the column. Which works nicely, however I want to be able ...
2
votes
2answers
40 views

Datagrid column header values are missing

Beginner question. I have following XAML in my WPF form. <DataGrid x:Name="GridTable" ItemsSource="{Binding GridDataSource}" HorizontalGridLinesBrush="#FFE2E2E2" ...
0
votes
1answer
19 views

How to validate data in DataGrid when it is bound to a DataTable?

I am not able to figure out a way to validate user input in a DataGrid control when it is bound to a DataTable. The issues I see are: I can't add custom validation rules to the data source i.e. ...
0
votes
0answers
20 views

Display a collection of custom entities in Extended WPF Toolkit DataGridControl

I have following XAML, which displays collection of custom entities in stock DataGrid control: <DataGrid ItemsSource="{Binding AlgoVersionClipboard}" SelectedItem="{Binding ...
0
votes
0answers
20 views

How to Access button present in WPF cell of WPF table

I am Testing WPF Application using Coded UI.. My testcase is like verifying whether button is enabled or not. wpf button is present in wpftcell which is in the wpftable. public void ...
0
votes
1answer
16 views

WPF Filtering a CollectionViewSource

I have a WPF project that draws data from a dataset. In one particular view I have a grid and I want to show a filtered version of the data I've read that I cant Filter a BindingListView but this is ...
0
votes
1answer
30 views

Wpf DataGrid bind selection from two Collections of same Count

I have List<Foo> F and List<Bar> B, same Count. What is the cleanest/nicest way to bind columns F.x and B.y to same DataGrid in WPF and mantain OneWay binding from DataGrid to lists F and ...
3
votes
1answer
9k views

WPF Datagrid. Get the values of each cell of the selected row

I'm using the WPF toolkit DataGrid. How can I get the values of the cells of the selected rows?
1
vote
1answer
45 views

Binding IEnumerable<anonymous object> to DataGrid in WPF

I need merely a readonly display of Linq data; no requirement to observe changes. Here's the Linq: string ZIPCODEFIELDNAME="zip5"; DataTable DATA = (detailedQueryResult as DataTable); ...
2
votes
0answers
37 views

WPF UI slows down after showing any drop down content

I have a medium sized WPF application that develops a display update problem, but ONLY after a drop down is shown... When started the application performs very well and dragging the scrollbar up and ...
0
votes
0answers
17 views

DataGridTemplateColumn binding only works on first read

I have a DataGrid with a column that looks like: <DataGridTemplateColumn Header="Thing"> <DataGridTemplateColumn.CellTemplate> <DataTemplate> <TextBlock ...
0
votes
1answer
50 views

Binding a 2 dimensional bool array to datagrid in wpf

I have to create a Matrix like datagrid of type bool using 2D Array. I have a set of boolean string that is needed to be evaluated for each cell in the datagrid as follows for e.g cell[0,0] = ...
0
votes
1answer
44 views

Is this a threading issue? Binding results of backgroundWorker to WPF DataGrid causes hang

I cannot figure out why this is happening. Binding the DataGrid to a DataTable.DefaultView is causing the application to hang. I want to display the contents of a CSV file that has been parsed and ...
2
votes
2answers
68 views

WPF DataGrid - Color cells if 1st, 2nd, or 3rd best value in that column's bound data

My DataGrid has specific columns that I want to apply a background color to the cell if the value is the 1st, 2nd, or 3rd best value for that column. The datatypes are all primitives, either string, ...
0
votes
1answer
68 views

Sorting a WPF Data Grid Text Column With MultiBinding

Below is a DataGridTextColumn definition from my WPF datagrid with the converter difination and the converter code. Can someone please tech me how to sort this column, I believe I need to use ...
0
votes
0answers
14 views

How to make ControlTemplate generic or common with TemplateBinding

I have modified RadComboBox control to display RadGridView inside it. I replaced ScrollViewer and ItemsPresenter with following XAML. It's working fine. However I have multiple ComboBoxes and I don't ...
0
votes
1answer
25 views

WPF canvas with relative position

I have this DataGrid and this Canvas: <DataGrid Canvas.ZIndex="1" x:Name="dgTimeline"/> <Canvas Height="30" Width="999" Canvas.ZIndex="2" HorizontalAlignment="Left" VerticalAlignment="Top" ...
1
vote
1answer
27 views

wpf DataGrid - Sort on Command only

I have my own DataGrid component (inherited from DataGrid). I want this component to act like a MS Access grid. What I need is to sort the data once, when I invoke the method MySort() ...
0
votes
2answers
164 views

Getting WPF Data Grid Context Menu Click Row

I have a WPF DataGrid <DataGrid AutoGenerateColumns="False" Name="dataGrid1" IsReadOnly="True" > <DataGrid.Columns> <DataGridTextColumn Header="Site" Binding="{Binding Site}" ...
1
vote
1answer
46 views

How to bind an 2D array bool[][] to a WPF DataGrid (one-way)?

I have a matrix kind datagrid like this. this grid is designed entirely in XAML Now how to insert values into these datagridcell with 2 dimensional array ? the values which is needed to be ...

1 2 3 4 5 28