gpt4 book ai didi

wpf - WPF-使用行和列定义的网格-如何忽略某些行的列

转载 作者:行者123 更新时间:2023-12-02 06:53:44 25 4
gpt4 key购买 nike

我正在尝试在wpf应用程序中使用网格行/列定义。目前,我需要在GroupBox中实现一个列表 View 。在这里,我需要忽略在 View 顶部设置的列定义。

行和列定义:

        <Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="260" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="250" />
<ColumnDefinition Width="20" />
<ColumnDefinition Width="180" />
<ColumnDefinition Width="20" />
<ColumnDefinition Width="180" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>

在这里,您看到我的rowDefinition高度为260。其中应该包含我的列表 View 。问题在于它在我创建的列中,因此不会占用所有空间。是否有某种设置可以使该行忽略我设置的列?我仍然希望将这些列用于其他行。

在这里,您可以看到其外观的图片:

enter image description here

希望有人能帮忙,美好的一天。

最佳答案

只需使用附加属性Grid.ColumnSpan:

<ListView Grid.ColumnSpan="6"/>

它将您的 ListView扩展为6列。

有关用户界面的简单建议:

我建议您创建可调整大小的XAML,而不是静态的。我的意思是不好:
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="260" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="250" />
<ColumnDefinition Width="20" />
<ColumnDefinition Width="180" />
<ColumnDefinition Width="20" />
<ColumnDefinition Width="180" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>

但是,这样更好:
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="3*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="0.5*" />
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="0.5*" />
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>

它可以在任何显示器上提供可调整大小的UI(XAML)。

关于wpf - WPF-使用行和列定义的网格-如何忽略某些行的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36399356/

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