GrapeCity CalendarGrid for Windows Forms 2.0J > CalendarGridの使い方 > InputManCell > GcNumber型セル > サンプルコード(CalendarGcNumberCellType) |
既定ではドロップダウンボタンのクリックまたはF4キー、Alt+Downキーの押下によってドロップダウン電卓が表示されます。この動作を無効にするには、CalendarGcNumberCellType.DropDown.AllowDropプロパティをFalseに設定します。
Imports InputManCell = GrapeCity.Win.CalendarGrid.InputMan Dim today As DateTime = DateTime.Today Dim gcNumberCellType As New InputManCell.CalendarGcNumberCellType() gcNumberCellType.SideButtons.Clear() gcNumberCellType.DropDown.AllowDrop = False GcCalendarGrid1.Content(today).Rows(1).Cells(0).CellType = gcNumberCellType GcCalendarGrid1.Content(today).Rows(1).Cells(0).CellStyle.BackColor = Color.Azure GcCalendarGrid1.ScrollIntoView(today)
using InputManCell = GrapeCity.Win.CalendarGrid.InputMan; var today = DateTime.Today; var gcNumberCellType = new InputManCell.CalendarGcNumberCellType(); gcNumberCellType.SideButtons.Clear(); gcNumberCellType.DropDown.AllowDrop = false; gcCalendarGrid1.Content[today].Rows[1].Cells[0].CellType = gcNumberCellType; gcCalendarGrid1.Content[today].Rows[1].Cells[0].CellStyle.BackColor = Color.Azure; gcCalendarGrid1.ScrollIntoView(today);