Question CollectionEditor - Launch without a PropertyGrid?

tim8w

Well-known member
Joined
Sep 8, 2020
Messages
129
Programming Experience
10+
I have written a CustomCollectionEditor and would like to launch it without creating a PropertyGrid Control, possibly by adding a standard Button and launching the Collection Editor when it's pressed. Is that possible?

Thanks,
Tim
 
You will likely have to breakout that UI as a custom window/control, and then have your CustomCollectionEditor or your button just instantiate that custom window/control. Unfortunately, all te UITypeEditor classes all assume that they will be used in Visual Studio's design time context.
 
Back
Top Bottom