Building custom popup controls

I heard more than few times question on how to build combobox like dropdown custom control where clicking on dropdown will show a treeview, a checked listbox or any user control. One example is the dropdown tree control for Area and Iteration paths. To save space in work item form, it is nice idea to build custom controls which dropsdown for viewing more data. And it is quite easy to do it with VS 2005 actually (When I built the areapath control, toolstrip controls weren't available so I had to do it hard way).

Here is a post on how to build such dropdown tree control using toolstrip functionalities in VS2005: https://blogs.msdn.com/jfoscoding/archive/2005/09/18/471048.aspx . The article here gives almost complete code to add an usercontrol as dropdown control: https://www.windowsforms.net/FAQs/default.aspx?PageID=2&ItemID=788&CategoryID=3&tabindex=3 . One useful implementation would be to dropdown a listbox with checkboxes to choose multiple values - it could be saved as comma delimited values in fields. Ofcourse, IWorkItemControl interface needs to be implemented as described in my custom control post.