列表框不会向下滚动,ishittestvisible为true

时间:2014-03-26 12:00:03

标签: c# wpf xaml listbox

我有一个页面,其中scrollviewer和stackpanel包装一个加载文本和按钮的列表框。问题是当IsHitTestVisible为false时,按钮不起作用,但如果IsHitTestVisible为true,则列表框无法滚动到底部。

<ScrollViewer Name="scrollview" VerticalScrollBarVisibility="Visible" Margin="0,0,0,0" Foreground="Black">
                    <StackPanel>

                            <ListBox Margin="0,0,0,20" Name="lbComments" VerticalAlignment="Top" IsHitTestVisible="False"/>

                    </StackPanel>
</ScrollViewer>

我需要做什么?

0 个答案:

没有答案