Hello,
If I try to add RadCheckedDropDownList and dock it in TableLayoutPanel in newest version of UI for WinControls it crashes with following error (see code below)
var form = new Form();var table = new TableLayoutPanel();var list = new RadCheckedDropDownList();list.Dock = DockStyle.Fill;// Set dock causes System.ArgumentOutOfRangeException: 'Value of '-2147483648' is not valid for 'LargeChange'. 'LargeChange' must be greater than or equal to 0.table.Controls.Add(list, 1, 0);form.Controls.Add(table);form.ShowDialog();
The problem is, I have application which has like 40 RadCheckedDropDownList, so any help will be appreciated.
Regards,
Mateusz
