|
this.scheduleControl1.Calendar.CalenderGrid.QueryCellInfo += CalenderGrid_QueryCellInfo;
private void CalenderGrid_QueryCellInfo(object sender, Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs e)
{
if (e.RowIndex == 1)
{
if (e.ColIndex == 1)
e.Style.CellValue = "PO";
else if (e.ColIndex == 2)
e.Style.CellValue = "W";
else if (e.ColIndex == 3)
e.Style.CellValue = "S";
else if (e.ColIndex == 4)
e.Style.CellValue = "CZ";
else if (e.ColIndex == 5)
e.Style.CellValue = "PT";
else if (e.ColIndex == 6)
e.Style.CellValue = "S";
else if (e.ColIndex == 7)
e.Style.CellValue = "NI";
}
} |
|
this.scheduleControl1.Calendar.CalenderGrid.QueryCellInfo += CalenderGrid_QueryCellInfo;
private void CalenderGrid_QueryCellInfo(object sender, Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs e)
{
if(e.RowIndex == 1 || e.RowIndex == 9)
{
if (e.ColIndex == 1)
e.Style.CellValue = "PO";
else if (e.ColIndex == 2)
e.Style.CellValue = "W";
else if (e.ColIndex == 3)
e.Style.CellValue = "S";
else if (e.ColIndex == 4)
e.Style.CellValue = "CZ";
else if (e.ColIndex == 5)
e.Style.CellValue = "PT";
else if (e.ColIndex == 6)
e.Style.CellValue = "S";
else if (e.ColIndex == 7)
e.Style.CellValue = "NI";
}
} |