[.NET 2]
how should I list a form controls in a Combobox of the same form(like VS designer does)?

I tried:
cboObjectSelection.DataSource = Me.Controls
but this does not work.
Is there a possibility to filter(customize) this list?
|
|
|
You might be able to do it if you set the |
|||
|
|
|
I have put the code in a button's click event, you can modify it according to you requirement. Hope this will help you.
|
|||
|
|
It looks like you're using VB here - and my answer will be in C#, I'm afraid. Here's my solution, and you can see a screenshot (hopefully, if this bloody link works!) of it working here. You need to recursively iterate through all the controls on the form, descending into each one's Controls collection if it has children. This solution uses a private class 'ControlInfo' inside which a Control instance is place - which overrides the ToString() operation so you can easily customise the text that is displayed in the combo. You then Databind the combo to a bunch of these after producing them from the Form's control tree. To use this code create a new form and place a combo called comboBox1 on there, then you should be able to replace everything with this:
|
|||||||||||
|
|
You'll have to iterate each item in the Controls collection and add it to the ComboBox's Items collection. The simplest code would look like this:
The issues here are that
To get the control back, you have to do this:
The second parameter tells the find controls whether to recurse through the hierarchy of controls. The Find method returns an array of controls, hence the Hope this helps! |
|||
|
|