Click here to Skip to main content
15,884,986 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
I'm using the PropertyGrid control in the WPF Extended Toolkit (v1.70).

I have an Image property in my SourceObject, and I need to fire up a dialog box in order to select an image for that property. I fingered out that I need to derive a custom editor from DialogPropertyValueEditor, but I have an additional requirement.

I need to be able to use two other properties in the PropertyGrid (or in the bound SourceObject) in order to properly initialize the form that allows the selection of an image.

How do I go about doing that?

Also, I added this attribute to the Image property in the SourceObject, but I didn't see that (Image) property listed in the property grid. Why isn't that showing up in the property grid?
C#
[Editor("CDSceneSelector", "DialogPropertyValueEditor")]
[Category("General")]
public Image BaseImage
{
    get...
    set...
}
Posted

1 solution

Did you solve this already? I was thinking of custom editor.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900