views:

424

answers:

2

How implement selectable GridView embedded in WPF ComboBox.

+1  A: 

You could just use a ToggleButton, Popup, and content (Grid, in your case) to achieve that. What specifically are you struggling with?

HTH, Kent

Kent Boogaart
A: 

Simply use the MS DataGrid ( http://www.codeplex.com/wpf ) or any other of the free DataGrids. The GridView is often too limited...

Hades32