gpt4 book ai didi

c# - WPF响应式设计(液体布局)

转载 作者:行者123 更新时间:2023-12-01 22:41:25 26 4
gpt4 key购买 nike

我想让我的 WPF 应用程序完全响应式应用程序,我阅读了很多有关此主题的帖子,但不幸的是所有这些帖子都无法帮助我完成我想要的任务。

我想做的是让我的应用程序像网站一样响应..这意味着如果我必须垂直排列按钮并且最小化页面的宽度,那么两个按钮应水平排列。像这样:

Normal Window

enter image description here

After Resize

enter image description here

这在 WPF 中可能吗?就是我想做的所谓“液体布局”,在This中提到。问题?

最佳答案

是的,实现这一目标的一种方法是使用 WrapPanel 和一个 hacky 转换器来确保中间元素占据所有剩余空间:

<Window.Resources>
<local:WpConverter x:Key="WpConverter"/>
</Window.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Rectangle Grid.Row="0" Fill="BlueViolet" Height="75" HorizontalAlignment="Stretch"/>
<WrapPanel x:Name="wp" Grid.Row="1" HorizontalAlignment="Stretch" Orientation="Horizontal">
<StackPanel Width="100">
<Rectangle Fill="CornflowerBlue" Height="20" Margin="3"/>
<Rectangle Fill="CornflowerBlue" Height="20" Margin="3"/>
<Rectangle Fill="CornflowerBlue" Height="20" Margin="3"/>
<Rectangle Fill="CornflowerBlue" Height="20" Margin="3"/>
</StackPanel>
<Grid HorizontalAlignment="Stretch" Width="{Binding Path=ActualWidth, ElementName=wp,Converter={StaticResource WpConverter}}"></Grid>
<Rectangle Margin="3" Fill="CornflowerBlue" Width="94" Height="200" ></Rectangle>
</WrapPanel>
<Rectangle Margin="3" Grid.Row="2" Fill="Cyan" Height="50" HorizontalAlignment="Stretch"/>

</Grid>

转换器的作用是确保中间网格拉伸(stretch)占据所有剩余空间(wrapanel 宽度 - 左侧边栏宽度 - 右侧边栏宽度):

   public class WpConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return Int32.Parse(value.ToString()) - 200;
}

public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}

Ps:您还可以使用多值转换器并传递左侧和右侧边栏的 ActualWidths,而不是在转换器中硬编码它们的值。

结果:

enter image description here

关于c# - WPF响应式设计(液体布局),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51578656/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com