using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; namespace sharpcomparer.controls { public class ImageColumn : DataGridViewImageColumn { public ImageColumn(string columnName, string headerText) { AutoSizeMode = DataGridViewAutoSizeColumnMode.None; Width = 40; Name = columnName; HeaderText = headerText; } } }