GrapeCity CalendarGrid for Windows Forms 3.0J
編集時に背景色を変更する

セル編集時の背景色を変更するには、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;

結果は次のようになります。


関連トピック

 

 


© 2008 GrapeCity inc. All rights reserved.