DropDownUserCell Sample

I was testing the sample code for this and if you add more items the scrollbar gets hidden under the bottom portion of the form and you can not get to the last items in the list control. This does not happen on the DropDownForm sample only the dropdownuser sample.

2 Replies

AD Administrator Syncfusion Team June 24, 2005 04:53 PM UTC

This is a Windows Forms issue. If you set a control to be Dock.Fill, it should be the last one you add to the parent control. In that sample, open up the designer generated code in DropDownUser.cs and change: this.Controls.Add(this.panel1); this.Controls.Add(this.checkedListBox1); to this.Controls.Add(this.checkedListBox1); this.Controls.Add(this.panel1);


AD Administrator Syncfusion Team June 24, 2005 06:07 PM UTC

Man I wish I had known that a long time ago. Thanks for the tip! This explains why my other custom control (almost identical) works fine.

Loader.
Up arrow icon