1

我试图将 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>
4

1 回答 1

1

您是否尝试过设置ScrollViewer.*附加属性。

  <ComboBox Height="23" HorizontalAlignment="Left" Margin="56,41,0,0" Name="comboBox1" VerticalAlignment="Top" Width="120">
            <ScrollViewer  Height="100" >
                <DataGrid Width="100"  Height="200"  Name="dgCustomers"></DataGrid>

            </ScrollViewer>
    </ComboBox>
于 2012-05-16T14:28:51.117 回答