R
ramo9941
İ have a property like this.
[TypeConverterAttribute(typeof(AConverter))]
public class Expandable
{
[NotifyParentProperty(true)]
public Color Color
{
get { return _a; }
set { _a = value; }
}
}
and use above code:
Expandable _exp;
public Expandable Exp
get { return _exp; }
set { _exp = value; }
If user change Color in Properties at right side of the visual studio
editor, i want invoke Exp set value but Color set invoke.
How can i do this?
[TypeConverterAttribute(typeof(AConverter))]
public class Expandable
{
[NotifyParentProperty(true)]
public Color Color
{
get { return _a; }
set { _a = value; }
}
}
and use above code:
Expandable _exp;
public Expandable Exp
get { return _exp; }
set { _exp = value; }
If user change Color in Properties at right side of the visual studio
editor, i want invoke Exp set value but Color set invoke.
How can i do this?