Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
public
class
Person
{
Person(
string
name,
int
id,
desc)
this
.Name = name;
.Id = id;
.Desc = desc; }
Name
get
;
set
; }
Id
Desc
}
List<Person> people =
new
List<Person>();
for
(
i = 0; i <= 101; i++)
people.Add(
"Name "
+ i, i,
"Some quite long description that goes in here"
));
.radMultiColumnComboBox1.DataSource = people;
.radMultiColumnComboBox1.DisplayMember =
"Name"
.radMultiColumnComboBox1.ValueMember =
"Id"
.radMultiColumnComboBox1.MultiColumnComboBoxElement.DropDownSizingMode = Telerik.WinControls.UI.SizingMode.UpDownAndRightBottom;
.radMultiColumnComboBox1.MultiColumnComboBoxElement.DropDownMinSize =
Size(300, 0);
.radMultiColumnComboBox1.EditorControl.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
.radMultiColumnComboBox1.EditorControl.AutoSizeRows =
true
.radMultiColumnComboBox1.EditorControl.Columns[
"Desc"
].WrapText =