有没有办法让 DataGridView 中的每一列占总网格的百分比宽度?我目前正在使用固定宽度,但想给一列 15% 的宽度,另一列 25% 的宽度,依此类推,以便 100% 的表格被填充并使用网格调整大小。
问问题
22808 次
3 回答
17
尝试使用DataGridViewColumn.FillWeight属性。基本上,您为每一列分配一个权重,并根据这些权重重新调整列的大小。MSDN 的文章不是那么好。请参阅下面的文章以获得更好的解释 -
于 2013-03-22T20:34:30.803 回答
3
尝试这个
private void DgvGrd_SizeChanged(object sender, EventArgs e)
{
dgvGrd.Columns[0].Width = (int)(dgvGrd.Width * 0.2);
dgvGrd.Columns[1].Width = (int)(dgvGrd.Width * 0.2);
dgvGrd.Columns[2].Width = (int)(dgvGrd.Width * 0.4);
dgvGrd.Columns[3].Width = (int)(dgvGrd.Width * 0.2);
// also may be a good idea to set FILL for the last column
// to accomodate the round up in conversions
dgvGrd.Columns[3].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
}
于 2020-08-22T21:32:56.867 回答
2
可以使用值转换器
这会减去一个参数,但您可以让它除以一个参数。
<local:WidthConverter x:Key="widthConverter"/>
<GridViewColumn Width="{Binding ElementName=lvCurDocFields, Path=ActualWidth, Converter={StaticResource widthConverter}, ConverterParameter=100}">
[ValueConversion(typeof(double), typeof(double))]
public class WidthConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
// value is the total width available
double otherWidth;
try
{
otherWidth = System.Convert.ToDouble(parameter);
}
catch
{
otherWidth = 100;
}
if (otherWidth < 0) otherWidth = 0;
double width = (double)value - otherWidth;
if (width < 0) width = 0;
return width; // columnsCount;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
于 2013-03-22T20:33:58.880 回答