I'm looking to replicate some behavior that visual studio already does for me: have a dropdown, in the designer, allow me to select other components in the same forms.
Take the following example: A form and a button.
From the form, there is an 'OKButton' property that you can set. When you drop down the dialog, all of the possible Buttons appear as possible selections in the dropdown.
I have something like that, where I want a textbox to have property called "ServiceMember". When you expand that, it will allow me to choose from all the public members of my form that have the type "ServiceObject".
Is this possible to have this work in any automatic sense? And if not, I'm not sure how to populate the combobox with names that aren't in the current object. They're a member of the parent form?