2
votes
1answer
170 views

Add combobox to datagrid that is linked to a datable

My program is a WPF application written in VB.net. I accept answers geared toward C# as well, as I should be able to understand and/or convert. I have a dataTable that I fill with data from my MySQL ...
0
votes
1answer
416 views

How to get values of cells of selected row in datagrid in vb.net

Am trying to get values from the cells in a selected row in a datagrid but in vain. I have been able to do this easily in datagridview in windows forms but the same is not working in wpf datagrid. The ...
0
votes
1answer
206 views

How to add data from access to wpf datagrid in vb.net

how do I add data from access db to a wpf datagrid. I have tried using datatable as datasource but it gives an error. I have also tried using itemsource instead of datasource like some sources suggest ...
0
votes
2answers
384 views

WPF Datagrid generates rows, but the columns stay blank

I'm trying to fill a datagrid in WPF the same way I would fill it in Silverlight, but apparently it doesn't really work the same way. This is the Grid in XAML: <DataGrid x:Name="gvEintraege" ...
-1
votes
1answer
142 views

How to pass data between pages in WPF

How to pass data between pages in WPF? Thank you!
0
votes
0answers
108 views

How to navigate to a file on the click event of a WPF datagrid hyperlink? [closed]

How to navigate to a file on the click event of a WPF datagrid hyperlink?
0
votes
1answer
115 views

Datagrid height in wpf

I only want the height of my Datagrid to be the height of as many row that are returned. I don't want the greyspace below the rows. How Can I resolve this Please? Thanks <DataGrid ...
0
votes
1answer
92 views

Update property's value in datagrid based on another property's input

I have an observable collection binded to a datagrid. On a datagrid row, when I edit a property's value I need another property on that row to update it's value based on a calculation. What is the ...
0
votes
1answer
507 views

How do I set text wrapping inside a DataGrid in the code-behind?

I'm working in VB.Net w/ WPF and I need to create a DataGrid at run-time (in the code-behind) with the text in each grid cell able to wrap. I've found a lot of examples showing how to do this in the ...
1
vote
0answers
331 views

Using checkboxes in a grouped vb.net datagrid

I have three kind of separate checkbox questions, all related to their use in the same datagrid. 1) I've loaded a datatable, dtAll, into a datagrid, dgdList, and bound each column to the imported ...
0
votes
0answers
589 views

Programmatically Change Expander Property IsExpanded = True

I'm loading in a datatable and binding it to a datagrid via the collectionviewsource. I do this whenever the user clicks a 'find records' button that calls a sql stored procedure. Since this takes a ...
0
votes
2answers
418 views

Datagrid Update Checkbox IsChecked on DataGrid.Refresh()

I have a datagrid who's ItemsSource is a strongly typed IEnumerable object In this datagrid, I have a checkbox column, a price column, a part name column, and a 'total selling for' column. On ...
0
votes
2answers
581 views

Binding to a list within a collection WPF/VB

I was wondering if its possible to bind a datagrid column to a list (Of T) thats stored within an observable collection! Here's my current code: Dim _BindWithThis As New List(Of BindWithThis) ...
1
vote
1answer
601 views

Two-way WPF binding to Properties of a class inside of an ObservableCollection

I've searched as best as I can, and I can't find an answer to this specific problem that I have... WPF binding seems to be great and all, but I end up banging my head against the wall more often than ...
2
votes
0answers
499 views

Text entered in WPF DatagridTextboxColumn and value selected in DatagridComboboxColumn are not displayed when focus is lost

My question might seem repeatetive as there are similar questions in StackOverflow like, How to retain value in DataGridComboBoxColumn of WPF's DataGrid Creating WPF DataGrid dynamically with ...
1
vote
2answers
2k views

Get Cell value from WPF Datagrid (in vb)

Hi I am converting a old vb.net program to WPF and am having trouble. I imported some data to a datatable and dumped that into a datagrid. I now need to go row by row and extract the cell values and ...
1
vote
2answers
1k views

WPF DataGrid Scroll To Top after Sort

I have a .Net 4.0 WPF application using a data grid. Currently after sorting by a column, the scroll position of the grid stays where it was before the sort. For this application, I need to scroll ...
2
votes
1answer
2k views

Add multi-column data to WPF ListView in VB.NET 2008

I've been searching and searching, but I haven't been able to find a halfway-decent way of adding multiple columns of data into a WPF VB.NET ListView. The data I'm adding is not from a datasource. ...
1
vote
1answer
401 views

Using a databound combobox on a datagrid

With a datagrid, I want to use a databound combobox to set the value of a property with the combobox's selected value. How would I go about doing that? Cheers
2
votes
1answer
3k views

How to determine whether a WPF DataGrid is in edit mode? [duplicate]

Possible Duplicate: Code to check if a cell of a DataGrid is currently edited Is there a way to determine whether a WPF DataGrid is in edit mode / which row is currently edited? EDIT ...