datagridcomboboxcolumn

MS DataGrid (WPF) : How to bind a combobox to a class?

This might sound like a trivial question, but even here in Stackflow I only have found binding to a simple string collection. I have a Parent class with two properties Name and Age. I have a Child class with two properties ChildName and ChildAge. Within MVVM pattern I am exposing these properties into the ViewModels and additionally I...

How do you show a tooltip for a DataGridComboBoxColumn?

I want to show a tool tip for the element style (the non-editing mode) of a DataGridComboBoxColumn. I have not been able to figure out a good way of doing this. In the example below I can either show a tooltip, or allow edits to the cell by changing the IsHitTestVisible property to true or false. I have been unable to both show the to...