滚动到列表框wp7的底部

时间:2011-09-13 21:13:01

标签: c# silverlight windows-phone-7 listbox scrollviewer

我有很多项目(0-100)最终需要滚动到包含它的Listbox的底部。我试过:

ScrollViewer.SetVerticalScrollBarVisibility(listmy, ScrollBarVisibility.Auto);
            listmy.SelectedItem =  listmy.Items.Count-1;
            listmy.ScrollIntoView(listmy.SelectedItem);
            ScrollViewer.SetVerticalScrollBarVisibility(listmy, ScrollBarVisibility.Disabled);

但这对我不起作用。scrollviewer包装列表框和文本框。(列表框垂直滚动处于禁用状态)。 UPD xaml:

<Grid>

    <ScrollViewer Name="_ScrollViewer" VerticalScrollBarVisibility="Auto">
        <StackPanel Name="stackPanel" Height="auto">
          <ListBox ScrollViewer.VerticalScrollBarVisibility="Disabled"  x:Name="listmy">
            <ListBox.ItemTemplate>
              <DataTemplate>...

和cs:

listmy.ItemsSource = ((App)Application.Current).DIALOG;
        ScrollViewer.SetVerticalScrollBarVisibility(listmy, ScrollBarVisibility.Auto);
        listmy.SelectedIndex =  listmy.Items.Count-1;
        listmy.ScrollIntoView(listmy.SelectedItem);
        ScrollViewer.SetVerticalScrollBarVisibility(listmy, ScrollBarVisibility.Disabled);

4 个答案:

答案 0 :(得分:5)

我收集你实际上只想确保ListBox的ScrollBar始终完全滚动到底部。其他解决方案只是确保最后一行是可见的(不一样)。

要获得您想要的效果,您可以创建一个简单的子类ListBox,如下所示:

    using System.Windows.Controls;
    namespace ScrollBarTest
    {
        public class CustomListBox : ListBox
        {
            public void ScrollToBottom()
            {
                var scrollviewer = GetTemplateChild("ScrollViewer") as ScrollViewer;
                scrollviewer.ScrollToVerticalOffset(scrollviewer.ScrollableHeight);
            }
        }
    }

不要像在示例中那样使用外部ScrollViewer,只是使用子类ListBox

只要您希望滚动到最后一行,只需调用ScrollToBottom()方法即可。

子类化的原因是GetTemplateChildprotected,因此无法从派生类的外部访问。

答案 1 :(得分:3)

这个怎么样:

var lastItem = listmy.Items[listmy.Items.Count - 1];
listmy.ScrollIntoView(lastItem);

我在一个示例项目上尝试过它,效果很好!

答案 2 :(得分:2)

碰到了这个并没有找到“开箱即用的工作没有代码隐藏”的解决方案,所以我想出了这个类:

using System.Windows.Controls;

/// <summary>
/// A list box which automatically scrolls to the last line if new items were added.
/// </summary>
public class AutoscrollListBox : ListBox
{
    /// <summary>
    /// The on items changed.
    /// </summary>
    /// <param name="e">
    /// The e.
    /// </param>
    protected override void OnItemsChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
    {
        this.ScrollDown();
        base.OnItemsChanged(e);
    }

    /// <summary>
    /// Scrolls to the last element.
    /// </summary>
    private void ScrollDown()
    {
        if (this.Items.Count > 0)
        {
            var lastItem = this.Items[this.Items.Count - 1];
            this.ScrollIntoView(lastItem);
        }
    }
}

只需使用此列表框,不需要额外的“魔法”。

答案 3 :(得分:1)

如果您只是设置ListBox的选择索引,它应该工作。我试了一下,看起来效果很好。

listBox1.SelectedIndex = listBox1.Items.Count - 1;

我已经尝试过了,它滚动到了ListBox的底部,没有任何问题。