Winforms — multi select dropdown list

后端 未结 4 1997
Happy的楠姐
Happy的楠姐 2020-12-24 02:47

I\'m shopping around for a dropdown list control that allows me to select multiple items. Something akin to the CheckedListbox, but in dropdown list form (I don\'t want it

4条回答
  •  一向
    一向 (楼主)
    2020-12-24 03:24

    You should Show again the dropdown Form, because the code below closes it.

    The code that Works is:

    protected override void OnClick(EventArgs e)
    {
            base.OnClick(e);
            this.Parent.Focus();
            this.dropDown.Show(this);
    }
    

提交回复
热议问题