0
votes
0answers
127 views

Need Help on Binding DataTable and List into WPF DataGrid

first, apologize my bad english basically i'new in C# let say i have a two table and i want to store the result from those table into one datagrid the first table is exactly what would be the basic ...
0
votes
2answers
308 views

Binding Datagrid to observablecollection wont display data only rows

I'm having a bit of trouble getting the following to work: I'm creating an ObservableCollection like this: ObservableCollection<OverViewItems> ocOrderData = new ...
0
votes
0answers
101 views

Business WPF app on Classic theme (specifically, DataGrid styles)

I've liked the streamlined Classic theme since Win95 days, and always configure my desktop to use it. Recently while working on a WPF app i stumbled on a shocking 'discovery': default DataGrid ...
1
vote
1answer
487 views

MVVM DataGrid copy information from selected cells

I’m using .Net 4.0 DataGrid with MVVM pattern. I need to enable user to select cells and copy information from selected cells to other DataGrid rows (either via keyboard shortcut or context-menu ...
0
votes
1answer
1k views

MVVM DataGrid SelectedItem binding doesn’t get updated.

I’m new to .Net and C# and a little bit confused with bindings. I have application that implements MVVM and displays DataGrid. What I want to implement is when user presses certain key combination ...
4
votes
1answer
524 views

WPF DataGrid scrolling with down arrow key acts strangely

I've got a WPF DataGrid that I have been using for some time, and it works great. Unlike other posters here, I haven't had issues with the scrollbar or mouse wheel (yet). I have CTRLEND programmed ...
1
vote
1answer
170 views

Datagrid Row Wrong Alignement

i am experiencing a strange behaviour using WPF Datagrid. As you can see in the attached pics the sometimes happnes that a row is displayed with a bad "alignement". Here is the XAML Code of my ...
1
vote
1answer
497 views

Coded UI Test in wpf datagrid doesn't recognize cells and rows when row style is applied

In WPF Datagrid, if row style is used, it does not detect the grid rows. If I remove the row style, it detects the cell and rows properly. <DataGrid Grid.Row="1" x:Name="c_dataGrid" ...
1
vote
2answers
512 views

In a WPF DataGrid with DataView behind we want to show a ComboBox as a Label until clicked

So we have a WPF DataGrid with some ComboBoxes in some of the cells where there is a foreign relation, but this means we have hundreds of ComboBoxes loaded at a time which takes too long. What we ...
7
votes
2answers
2k views

DataGrid creating RadioButton column

I have objects bound to a DataGrid. I have created a radio button column bound to the Is Default property of the object. When the app starts up the correct item is shown as default, however the ...
0
votes
1answer
383 views

Binding WPF4 Datagrid to Empty Collection

I have a collection of objects which I am trying to bind to a DataGrid. When the collection has a lot of objects in it, it works fine. When the collection is empty, however, I see a blank row in the ...
2
votes
1answer
2k views

WPF DataGrid can't change selected row: stuck on first row

In short, my problem is that the WPF DataGrid won't let me select anything other than the first row. When I first fill it with data, no row is selected. Next, no matter what row I click on, the ...
2
votes
1answer
243 views

How do I bind this data to a DataGrid?

I've got a TreeView, and each TreeViewNode has an object in its Tag property. When a node in the treeview is selected, I want a DataGrid to be populated with the name and value of all the fields of ...