I have a Winform that includes a Grid that my Users can edit by adding/removing columns.
I have an Object ("gridProps" class) that holds all of the "grid" properties,
gridProps.Columns property replaces the default (text) editor with my own popup radForm that works very much like your own "Columns" property for radGrid. When the user clicks into that Property on the PropertyGrid, you get a string representation and a "..." button. Clicking on that button bring up my "Columns Editor" radForm and takes over until "OK" or "Cancel"
Everything works...except: The user can click into "Columns" on the PropertyGrid and it automatically opens the "Textbox" editor inside the PropertyGrid and the user can type away. Nothing happens with this input - my TypeConverter sees to that but they are still allowed to type whatever they want until they click away or hit enter/tab etc.
Is there a way to PREVENT the user from typing anything but STILL ALLOW them to click the "..." button?
I'm trying to mimic exactly how Telerik RadGrid's Columns property works.
Any advice would be helpful and appreciated!
-C