Jan*_*Jan 5 c# wpf layout listview scrollviewer
我确实有一个关于在scrollviewer中使用listview进行布局的问题.一旦listview位于scrollviewer中,它就会使用它的最大大小并且不会自动滚动,因为scrollviewer为其内部的控件提供了无限量的空间.问题是,只有当用户向下滚动并且我想使列表视图仅使用必要的空间并使用滚动条本身时,才能看到长列表下方的控件.图片确实告诉了更多的信息而不是文字(图片的链接也说得很多,因为我的声誉还不到10岁.编辑2:我只能使用一个链接,所以我将所有图片复制到一个).如果列表不长,一切都可以:
图片1 : 
现在如果列表更长,下面的控件会向下移动到看不见的地方:
图2:见图1中的链接
我现在想做的是:
图3:见图1中的链接
这本身并不是一个问题,因为我们可以将所有内容放在dockpanal中并将下面的控件停靠到Dock.Below和Top to Top,并让listview用"lastchildfill"填充中心.现在为真正的问题.如果窗口变小怎么办?然后首先列表视图消失,然后是其他所有内容,而没有滚动条滚动到底部的控件.
图4:见图1中的链接
我正在寻找的理想解决方案是在窗口(或根滚动查看器)上设置滚动条,这样我们就可以像这样滚动到窗口的每个部分,只要外部滚动条一切都是最小尺寸就可以看到.
图5:见图1中的链接
有任何想法吗?图片太多了?这里有一点xaml供大家尝试使它工作(这只是一个快速的例子窗口......)
<Window x:Class="WpfTest1.ScrollTestWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
Title="ScrollTestWindow" Height="400" Width="700">
<ScrollViewer >
<DockPanel LastChildFill="True" ScrollViewer.CanContentScroll="True" ScrollViewer.HorizontalScrollBarVisibility="Visible">
<Grid DockPanel.Dock="Top">
<TextBlock Text="Example controls above listview" Background="LightGray" FontSize="30"></TextBlock>
</Grid>
<Grid DockPanel.Dock="Bottom">
<TextBlock Text="Example controls below listview" Background="LightGray" FontSize="30"></TextBlock>
</Grid>
<ListView FontSize="30">
<ListView.View>
<GridView>
<GridViewColumn Width="190" Header="Date" />
<GridViewColumn Width="200" Header="Day Of Week" DisplayMemberBinding="{Binding DayOfWeek}" />
<GridViewColumn Width="120" Header="Year" DisplayMemberBinding="{Binding Year}" />
</GridView>
</ListView.View>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
</ListView>
</DockPanel>
</ScrollViewer>
Run Code Online (Sandbox Code Playgroud)
好的。所以我也遇到了同样的问题,但现在已经解决了!
我的项目看起来和你的有点不同,但我认为它应该适合你。我提出的解决方案也有一些限制。例如,仅当您只添加一个ListView时它才有效!在您的示例中,您只有一个,因此这不会成为问题。但对于任何可能想要更多ListView 的人来说,您必须添加更多功能来决定视图的大小以及放置它们的位置。
您还必须为 ListView 设置MinHeight 。
我的解决方案是创建您自己的面板类来扩展StackPanel,覆盖MeasureOverride和ArrangeOverride函数。并将ListView添加到创建的Panel中
自定义面板:
public class ScrollablePanel : StackPanel
{
protected override Size MeasureOverride(Size constraint)
{
Size tmpSize = base.MeasureOverride(constraint);
tmpSize.Height = (double)(this.Children[0] as UIElement).GetValue(MinHeightProperty);
return tmpSize;
}
protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize)
{
Size tmpSize = new Size(0, 0);
//Width stays the same
tmpSize.Width = finalSize.Width;
//Height is changed
tmpSize.Height = finalSize.Height;
//This works only for one child!
this.Children[0].SetCurrentValue(HeightProperty, tmpSize.Height);
this.Children[0].Arrange(new Rect(new Point(0, 0), tmpSize));
return tmpSize;
}
}
Run Code Online (Sandbox Code Playgroud)
XAML
<Window x:Class="WpfTest1.ScrollTestWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:WpfTest1"
Title="ScrollTestWindow" Height="400" Width="700">
<ScrollViewer >
<DockPanel LastChildFill="True" ScrollViewer.CanContentScroll="True" ScrollViewer.HorizontalScrollBarVisibility="Visible">
<Grid DockPanel.Dock="Top">
<TextBlock Text="Example controls above listview" Background="LightGray" FontSize="30"></TextBlock>
</Grid>
<Grid DockPanel.Dock="Bottom">
<TextBlock Text="Example controls below listview" Background="LightGray" FontSize="30"></TextBlock>
</Grid>
<local:ScrollablePanel>
<ListView FontSize="30" MinHeight="80">
<ListView.View>
<GridView>
<GridViewColumn Width="190" Header="Date" />
<GridViewColumn Width="200" Header="Day Of Week" DisplayMemberBinding="{Binding DayOfWeek}" />
<GridViewColumn Width="120" Header="Year" DisplayMemberBinding="{Binding Year}" />
</GridView>
</ListView.View>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
<sys:DateTime>1/1/1</sys:DateTime>
</ListView>
</local:ScrollablePanel>
</DockPanel>
</ScrollViewer>
</Window>
Run Code Online (Sandbox Code Playgroud)
这个问题很久以前就被问过,但我希望这个答案至少能帮助某人!
我还要感谢@sisyphe为解决这个问题提供的所有帮助:)
| 归档时间: |
|
| 查看次数: |
8108 次 |
| 最近记录: |