gpt4 book ai didi

c# - WPF 包装面板中的 float 行为

转载 作者:行者123 更新时间:2023-11-30 16:12:23 29 4
gpt4 key购买 nike

我不知道如何在更改窗口大小时做应得的事情

为了更好地解释,我画了一张图,您可以在其中看到我的程序在小窗口 (#1) 下的表现以及在最大化时的表现 (#2)。

enter image description here

我想尽可能(以及如何?)让它在最大化时表现得像#3 - 添加水平间隔器,使我的 wrapppanel 向左移动,网格向右移动

我在 xaml 中有以下代码:

<Grid x:Name="LayoutRoot">
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>

<!-- In this example row 0 and 2 have no data -->

<WrapPanel Name="TopMenu" Width="auto" HorizontalAlignment="Center" Grid.Row="1">
<WrapPanel HorizontalAlignment="Center" Height="160" Margin="10,10,0,0">
content 1
</WrapPanel>

<Grid x:Name="InfoTable" MinWidth="600" Margin="20,20,20,0">
content 2
</Grid>
</WrapPanel>
</Grid>

谢谢布拉泽克

最佳答案

您正在寻找的东西并不存在。您必须手动设置一个控件来填充宽度,否则,包裹面板只是从左到右布局,所有内容都向左对齐。但这里有一些您可以尝试的代码,可以让您朝着正确的方向前进。

<Window x:Class="WpfApplication4.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication4"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<local:WidthConverter x:Key="WidthConverter" />
</Window.Resources>
<WrapPanel>
<Button Content="Button1" Width="150" Height="20" />
<TextBlock Width="{Binding Converter={StaticResource WidthConverter}, Path=ActualWidth, RelativeSource={RelativeSource AncestorType={x:Type Window}}}" Text=" "/>
<Button Content="Button2" Width="150" Height="20" />
</WrapPanel>
</Window>

您需要填充空间的转换器如下所示:

namespace WpfApplication4 {
public class WidthConverter : IValueConverter {
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
Console.WriteLine(value.GetType());
var w = (double)value;
return w - 350;
}

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

需要注意的重要一点是,我们已将数字 (350) 硬编码为大于行中所有控件宽度的值。所以每个按钮 150 个,控件周围的填充更多一些。一旦行上有其他控件,这将变得更加困难,但您也可以添加另一个转换器来计算它们的宽度。

关于c# - WPF 包装面板中的 float 行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23012550/

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