我试图将 ComboBox 控件中的 WPF DataGrid 显示为组合框项。以下是 XAML。这里的问题是它没有在网格中显示滚动条。我确实尝试将 ScrollViewer 设置为 true。我还尝试将垂直滚动条设置为自动和可见,但到目前为止还没有运气。非常感谢任何帮助。
<ComboBox Height="23" HorizontalAlignment="Left" Margin="56,41,0,0" Name="comboBox1" VerticalAlignment="Top" Width="120">
<DataGrid Name="dgCustomers"></DataGrid>
</ComboBox>