I have a DataGridView that has 4 columns that need to be formatted. The dataSource for this DataGridView is a generic list of objects from a class with 4 properties.
At design time, how can I use intelisense to specify the column?
DataGridView dgv = new DataGridView();
List<MyDataRow> myDataList = new List<MyDataRow>();
// List is populated in this section of code...
dgv.DataSource = myDataList;
dgv.Columns["ALongDescriptiveNameThatCouldEasilyBeMistyped"].Width = 80; .
// dgv is added to a form and displayed in this section of code
public class MyDataRow
{
public string FirstName { get; set; }
public string LastName { get; set; }
public double ALongDescriptiveNameThatCouldEasilyBeMistyped { get; set; }
public int YearsOfService { get; set; }
public int MonthsOfService { get; set; }
}