PropertyGrid & UITypeEditor passing a cutom list to a custom editor
I’ve implemented a custom popup editor in the property grid. I’m displaying a formatted text but I need to send the popup a list of objects.
I was wondering if any one new how to pass a list(of objects) the editor control when it pops up and return values back to the control without having to display it.
Code Block
<Editor(GetType(ControlListTypeEditor), GetType(System.Drawing.Design.UITypeEditor))> _ Public ReadOnly Property Items() As String Get Return "(Collection)" End Get End Property