OwnerDrawVariable Combobox DropDown Blank Space
问题 I have developed the following custom combo box to increase the height of the items. Once that is done, a blank space appears at the end of the drop down menu when there is a scrollbar. How can I correct the issue? class MyComboBoxXX : ComboBox { public MyComboBoxXX():base() { this.DrawMode = DrawMode.OwnerDrawVariable; this.DropDownStyle = ComboBoxStyle.DropDownList; this.MaxDropDownItems = 5; this.IntegralHeight = false; } protected override void OnMeasureItem(MeasureItemEventArgs e) { e