Reputation: 9100
I've seen this control in applications, and not just dreamed it, right?
Upvotes: 3
Views: 300
Reputation: 9100
You can get the control here.
This is a new control, inspired by this WPF control and this asp.net project.
Thanks to everybody that pointed out existing projects, and suggested building my own.
Upvotes: 1
Reputation: 2035
As far as I know, no such control exists. You can make it yourself from two ListBox controls and a few buttons or try to adapt existing sources like the one Justin came up to or this
Upvotes: 2
Reputation: 67135
You might be able to find somebody who has a free version of this implemented somewhere. However, this is usually just multiple controls put together with custom logic to match the rules that you specified. But, again, you might be able to find somebody who has turned this into a custom control; it is just not a default part of the Visual Studio toolbox.
A quick search found a code project solution that looks like it might work for you?
http://www.codeproject.com/Articles/8219/Enhanced-List-Box-Control
Upvotes: 1