次のサンプルコードは、マウスを
CalendarCell に合わせたときにセルのツールチップを表示するかどうかを設定する方法を示します。
private void EnableShowCellToolTip()
{
this.gcCalendarGrid1.ShowCellToolTips = true;
}
private void DisableShowCellToolTip()
{
this.gcCalendarGrid1.ShowCellToolTips = false;
}
Private Sub EnableShowCellToolTip()
Me.gcCalendarGrid1.ShowCellToolTips = True
End Sub
Private Sub DisableShowCellToolTip()
Me.gcCalendarGrid1.ShowCellToolTips = False
End Sub