Geoff White
Geoff White

Reputation: 21

Visual Studio custom properties dialog

I'm familiar with how to include properties of a user control in the Properties Window of Visual Studio. Can anyone tell me how to create a custom dialog, similar to the color picker for BackgroundColor, for a user control? I have a control with many properties and a "Control Builder" form would be very helpful.

Upvotes: 2

Views: 275

Answers (1)

Patrick
Patrick

Reputation: 17973

I think your looking for UITypeEditor. A walkthrough is available at msdn, Walkthrough: Implementing a UI Type Editor.

Upvotes: 1

Related Questions