デフォルトで、コントロールのドロップダウン部分はドロップダウンの右下隅に配置されます。コントロールの左下隅に基づいてドロップダウンの配置を可能にするために DropDownAlignRightプロパティは False に設定できます。
DropDownAlignRight に基づいて配置することによってドロップダウンがクリップされる場合、ドロップダウン部分の四角形は調整できます。
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ' Set the DropDownAlignRight property to false so the dropdown ' is aligned with the left edge Me.ultraCalendarCombo1.DropDownAlignRight = False End Sub
private void button1_Click(object sender, System.EventArgs e) { // Set the DropDownAlignRight proeprty to false so the dropdown // is aligned with the left edge this.ultraCalendarCombo1.DropDownAlignRight = false; }