如何使用或不使用ScrollViewer使WrapPanel显示垂直滚动条

时间:2016-02-26 06:28:22

标签: c# wpf scroll wrappanel

我有一个WrapPanel,按钮以编程方式创建并添加为WrapPanel的子项。因此,当WrapPanel充满按钮(子项)时,我想显示垂直滚动条,以便能够连续添加更多按钮。

如果我们需要显示滚动条,我们是否必须携带ScrollViewer?没有ScrollViewer,有没有办法?我想得到的是,因为WrapPanel的尺寸很小,我希望只在需要时显示一个滚动条(就像孩子一样)。

我的代码很简单,如下所示(Grid内部的WrapPanel和GridControl内部的Grid)

非常感谢您的卓越。

更新:我在互联网上寻找解决方案的努力甚至连续几天。我尝试将WrapPanel放在ScrollViewer中。但是,虽然我将VerticalScroll设置为auto,但即使WrapPanel没有任何子项,也会始终显示垂直滚动条。

此外,当我故意让WrapPanel充满子项(按钮)时,ScrollViewer的垂直滚动条不提供向下滚动的可用性。 并且WrapPanel底线的按钮显示了剪切和更多,我无法向下滚动以查看底线按钮。我故意将按钮放在WrapPanel的底线之外。

无论有没有,我希望只在需要时显示垂直滚动条(充满孩子)。这似乎很容易完成。但要让它正常工作很难。

解决方案由Henk Holterman先生提供

                    <DropShadowEffect/>
                </Button.Effect>
            </Button>
            <WrapPanel x:Name="WrapPanelGreen" HorizontalAlignment="Left" Height="180" VerticalAlignment="Top" Width="232" UseLayoutRounding="True" ScrollViewer.CanContentScroll="True" ScrollViewer.VerticalScrollBarVisibility="Auto"/>
        </Grid>
    </TabItem>
</TabControl>

以下是我的简单代码,它以编程方式创建按钮并添加为WrapPanel的子项。

for (int k = 0; k < Overviews.Length; k++)
{
    Button btnoverviewcontent = new Button();

    ToolTip tt = new ToolTip();
    tt.Content = "Press this button if you want to modify or delete.";
    btnoverviewcontent.ToolTip = tt;

    btnoverviewcontent.Cursor = Cursors.Hand;

    SolidColorBrush mySolidColorBrush = new SolidColorBrush();
    mySolidColorBrush.Color = Color.FromArgb(255, 101, 173, 241);
    btnoverviewcontent.Background = mySolidColorBrush;

    btnoverviewcontent.Effect = new DropShadowEffect
    {
        Color = new Color { A = 255, R = 0, G = 0, B = 0 },
        Direction = 315,
        ShadowDepth = 5,
        Opacity = 1
    };

    btnoverviewcontent.Padding = new Thickness(3, 3, 3, 3);
    btnoverviewcontent.HorizontalContentAlignment = System.Windows.HorizontalAlignment.Stretch;
    TextBlock textBlock = new TextBlock()
    {
        Text = Overviews[k],
        TextAlignment = TextAlignment.Left,
        TextWrapping = TextWrapping.Wrap,

    };

    btnoverviewcontent.Content = textBlock;
    btnoverviewcontent.BorderThickness = new Thickness(0, 0, 0, 0);
    btnoverviewcontent.FontStretch = FontStretches.UltraExpanded;
    btnoverviewcontent.Margin = new Thickness(5, 5, 5, 5);

    WrapPanelGreen.Children.Add(btnoverviewcontent);
    btnoverviewcontent.Click += new RoutedEventHandler(OnOverviewClick);

2 个答案:

答案 0 :(得分:11)

WPF中的想法是每个组件都只有自己的工作,如果你想要某些行为,你可以组合多个组件来创建你想要的视图。

这意味着为了获得面板的滚动条,您必须将其包装在ScrollViewer组件中。这就是ScrollViewer的目的,而这是解决这个问题的唯一(理智)解决方案。

  

但是,虽然我将verticalscroll设置为auto,但即使Wrappanel没有任何子项[...]

,也会始终显示verticalscrollbar

然后你似乎错误地使用了ScrollViewer,或者包装了错误的元素。它应该是这样的:

<ScrollViewer VerticalScrollBarVisibility="Auto">
    <WrapPanel>
        <!-- Any number of components here -->
    </WrapPanel>
</ScrollViewer>

如果我在其中放置了大量的示例标签,那么只要窗口不够大而无法全部显示,我就会得到一个滚动条。但如果有足够的空间,则不会显示滚动条。

请注意,ScrollViewer本身需要在父元素中具有适当的尺寸,因此请确保它不大于可见区域。 WrapPanel(或您使用ScrollViewer包装的任何其他元素)也必须具有自动宽度和高度。否则,对于固定尺寸,面板的尺寸不会随着您修改面板内容而改变,因此滚动状态不会改变。

使用动态数量的元素查看此完整示例:

<Window x:Class="WpfExampleApplication.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Height="300" Width="200">
    <ScrollViewer VerticalScrollBarVisibility="Auto">
        <WrapPanel Name="panel">
            <Button Click="Button_Click">Add child</Button>
        </WrapPanel>
    </ScrollViewer>
</Window>

代码隐藏:

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }

    private void Button_Click(object sender, RoutedEventArgs e)
    {
        Label element = new Label() { Content = "This is some example content" };
        panel.Children.Add(element);
    }
}

答案 1 :(得分:1)

...以防万一有人在4.5年后看了这篇文章并且觉得该解决方案根本没有帮助: 我有一个类似的问题,这是由将我的ScrollViewer和动态按钮插入其中的StackPanel引起的。 似乎StackPanel可以无限扩展其高度,因此ScrollViewer和WrapPanel始终可以将其高度扩展到超出窗口边界的范围。因此您根本无法滚动。将StackPanel包装到ScrollViewer中对我来说很有帮助(尽管最终我不得不最终更改控件...)

致谢