在Silverlight中出错,请不要使用用户控件页在列表框中滚动浏览器

时间:2019-04-04 18:44:24

标签: c# silverlight listbox

我在使用ListBox时遇到了同样的问题,它没有扩展,并且没有出现滚动查看器。我以这种方式解决了这个问题,希望它能对遇到同样问题的人有所帮助。

  <UserControl x:Class="TesteView" 
   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
      <Grid MaxHeight="710">
      ....
      ....
      <StackPanel>
         <ListBox  MaxHeight="515" 
            ScrollViewer.HorizontalScrollBarVisibility="Hidden" 
            ScrollViewer.VerticalScrollBarVisibility="Auto" 
            ItemsSource="{Binding Path=Teste,Mode=TwoWay}">
            ....
            ....
        </ListBox>
     </StackPanel>
    </Grid>
   </UserControl>

0 个答案:

没有答案