DroppedDown プロパティを使用して、コントロールが現在ドロップダウンで、コントロールを強制的にドロップダウンするために使用できるかどうかを決定できます。
このプロパティはランタイムにのみ使用可能です。
Private Sub ShowDropDown() ' If the dropdown is not already visible, set the DroppedDown ' property to true, which will give the control focus and display ' the dropdown calendar. If (Not Me.ultraCalendarCombo1.DroppedDown) Then Me.ultraCalendarCombo1.DroppedDown = True End If End Sub
private void ShowDropDown() { // If the dropdown is not already visible, set the DroppedDown // property to true, which will give the control focus and display // the dropdown calendar. if ( ! this.ultraCalendarCombo1.DroppedDown ) this.ultraCalendarCombo1.DroppedDown = true; }