using System.Windows.Forms; namespace Oli.Controls.Tests { public partial class frmDragDropListBox : Form { public frmDragDropListBox() { InitializeComponent(); testDragDropListBoxCats1.AddItemsRange(new string[] { "Tiger", "Misty", "Simba", "Coco", "Missy", "Tigger", "Smokey", "Milo" }); testDragDropListBoxCats2.AddItemsRange(new string[] { "Cleo", "Sooty", "Monty", "Puss", "Kitty", "Felix" }); testDragDropListBoxDogs1.AddItemsRange(new string[] { "Fido", "Jessie", "Jack", "Bonnie", "Toby", "Sasha", "Sally", "Tess", "Daisy" }); testDragDropListBoxDogs2.AddItemsRange(new string[] { "Zoe", "Charlie", "Jess", "Zac", "Monty" }); } } }