PowerTools CalendarGrid for Windows Forms 1.0J
サンプルコード(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);
参照

 

 


© 2014 GrapeCity inc. All rights reserved.