GrapeCity CalendarGrid for Windows Forms 2.0J > CalendarGridの使い方 > セル型 > TextBox型セル(CalendarTextBoxCellType) > 編集時に背景色を変更する |
セル編集時の背景色を変更するには、CellStyle.EditingBackColorプロパティに編集時の背景色を設定します。
Imports GrapeCity.Win.CalendarGrid Dim template As CalendarTemplate = GcCalendarGrid1.Template Dim textBoxCellType As New CalendarTextBoxCellType() template.Content.Rows(1).Cells(0).CellType = textBoxCellType template.Content.Rows(1).Cells(0).CellStyle.EditingBackColor = Color.LawnGreen
using GrapeCity.Win.CalendarGrid; CalendarTemplate template = gcCalendarGrid1.Template; var textBoxCellType = new CalendarTextBoxCellType(); template.Content.Rows[1].Cells[0].CellType = textBoxCellType; template.Content.Rows[1].Cells[0].CellStyle.EditingBackColor = Color.LawnGreen;
結果は次のようになります。