I am trying to show the WPF DataGrid within the ComboBox control as a combox item. Following is the XAML. The problem here is that it is not showing-up the scrollbar in the grid. i did tried the ScrollViewer setting to true. I also tried setting up the vertical scrollbar to auto and to visible also but no luck so far. Any help is highly appreciated.
<ComboBox Height="23" HorizontalAlignment="Left" Margin="56,41,0,0" Name="comboBox1" VerticalAlignment="Top" Width="120">
<DataGrid Name="dgCustomers"></DataGrid>
</ComboBox>
Have you tried setting ScrollViewer.* attached properties.