0
votes
2answers
89 views

WPF Hierarchical ViewModel FindAncestor data binding error

I'm creating an MVVM application which has two view models, RegisterUserViewModel and UserViewModel. The "RegisterUserViewModel" has a public property which is a collection of "UserViewModel", like ...
1
vote
1answer
58 views

Conditional Formatting of items in a Combox

Currently I'm in a team building a datagrid that contains data coming from a viewmodel. We are using reactive-ui and each "row" in the datagrid is represented by a viewmodel class that inherits from ...
2
votes
1answer
256 views

Why does the ComboBox in my DataGrid column reset itself to null?

In my WPF application, I am developing a fairly straightforward page that allows either creating a new object or choosing one from a combo box, then editing the object. One of the parts of the object ...
0
votes
1answer
306 views

Binding datatable to combobox of datagrid in wpf

Hi I have to create a wpf grid which is having combo box in it . I have to bind grid to a data table dtGrid and combobox item source to a datatable dtcmb . I wrote template below for embedding ...
1
vote
1answer
258 views

Show tab control inside wpf combobox drop down

I want to show a TabControl with each tab having DataGrid inside the ComboBox drop down. Is it possible ?
0
votes
0answers
181 views

DataGridComboBoxColumn to DataGridTemplateColumn with usual ComboBox

I've got the working code sample with DataGridComboBoxColumn: <DataGridComboBoxColumn Header="Price" Width="Auto" ItemsSource="{Binding Source={StaticResource coursesLookup}}" ...
0
votes
1answer
376 views

WPF combobox dynamic binding

I've a combo box with in data grid edititemtemplate and i write some code in combo box loaded event like: Code: private void cmbGFld_Loaded(object sender, RoutedEventArgs e) { ...
1
vote
1answer
781 views

Binding WPF Combobox within Datagrid in MVVM not saving changes

I have a DataGrid defined as such with a MVVM design pattern: <DataGrid Margin="10" Height="385" Width="1000" ItemsSource="{Binding Inspection.Details}" SelectedItem="{Binding SelectedDetail, ...
0
votes
1answer
3k views

wpf ObjectDataProvider method parameter bind to combobox selected value

I'm dealing with a problem in WPF binding. I'm creating a user control which present a datagrid, fiiltered by 2 possible values. The first value is set by a textbox, the second one by a combo box. I'm ...
1
vote
1answer
1k views

How to bind a list to a Combo Box that is in a sub class of the Data Grids data source?

This is my code for my DxGrid so far: <dxg:GridControl x:Name="gridControlItemsDistinct" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" ...
1
vote
1answer
402 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
0
votes
1answer
332 views

How do I bind a ComboBox

I have a ComboBox and need to bind it to a DataGrid. How can I do that?
0
votes
1answer
4k views

How to use WPF Toolkit Datagrid DataGridTemplateColumn and a combobox?

I have a data grid that looks like this <tk:DataGrid ItemsSource="{Binding Parents}" AutoGenerateColumns="False"> <tk:DataGrid.Columns> ...
0
votes
1answer
746 views

WPF Datagrid, Setting the background of combox popup

I would like to change the color of the popup background when using a DatagridComboboxColumn in the WPF Toolkit datagrid. I've edited the Template for a normal Combobox and it works great for selected ...