gpt4 book ai didi

.net - 删除 WPF DataGrid 中的空白列

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

我使用 DataSet 来填充 WPF (C#) 中的 DataGrid。结果是:

enter image description here

我想删除左侧的空白列。我想将剩余空间分享给列。预期结果是:

enter image description here

我的 XAML 代码是:

<Window x:Class="RFID.CareerWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="CareerWindow" Height="356" Width="404">
<Grid>

<DataGrid x:Name="dg1" HorizontalAlignment="Left" Margin="25,10,0,0" VerticalAlignment="Top" Height="306" Width="355" EnableRowVirtualization="false" EnableColumnVirtualization="false" FontFamily="2 badr" FontSize="20" FlowDirection="RightToLeft" CanUserAddRows="False" CanUserReorderColumns="False"/>

</Grid>
</Window>

最佳答案

避免设置静态高度和宽度。

使用ColumnWidth="*"共享DataGridColumns之间的空间

<DataGrid x:Name="dg1" ColumnWidth="*"
HorizontalAlignment="Left" VerticalAlignment="Top" Margin="25,10,0,0"
EnableRowVirtualization="false" EnableColumnVirtualization="false"
FontFamily="2 badr" FontSize="20" FlowDirection="RightToLeft"
CanUserAddRows="False" CanUserReorderColumns="False" />

关于.net - 删除 WPF DataGrid 中的空白列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18215068/

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