gpt4 book ai didi

c# - wpf 列表框行高

转载 作者:行者123 更新时间:2023-11-30 13:37:02 25 4
gpt4 key购买 nike

我在 wpf 中创建了一个列表框,并在单击按钮时动态地将项目添加到列表框。我想知道如何将列表框中每一行的总高度设置为特定值?

我在网上搜索并找到了这个类似的示例,但我不完全确定如何将此解决方案集成到我的解决方案中。希望有人能提供帮助。感谢你们。

How to set WPF ListView row height?

<Window x:Class="stadio.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Stadio" Height="350" Width="525" Background="#FF212121">
<Grid>
<ListBox x:Name="uiFileList" BorderThickness="0" Background="{x:Null}" Foreground="Gainsboro" Margin="6"/>

</Grid>
</Window>

最佳答案

应该与您发现的示例非常相同,该示例演示了相同但使用 ListView 。您只需要将 ListView... 更改为 ListBox... :

<ListBox x:Name="uiFileList" BorderThickness="0" 
Background="{x:Null}" Foreground="Gainsboro"
Margin="6">
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<Setter Property="Height" Value="50" />
</Style>
</ListBox.ItemContainerStyle>
</ListBox>

关于c# - wpf 列表框行高,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26558411/

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