
Hallo,
I encountered a problem when using the NotifyParentProperty. It seems like when this property is set to "true", the focus will automatically move to the parent property after the child property was edited.
For example, if you have the following object (I customed the demo in the Sample browser to reproduce this issue):If you now use a DoublePropertyEditor to edit the "willNotify" value via a spin control, it is not possible to press and hold the mouse button (or use the "Up" key) to constantly increase the value, because the focus will always move to the parent grid item ("Child"). So you always have to press the mouse button again to increase the value.
Is there any possibilty for me to change this behavior so that the user can press and hold the mouse button and the value will change constantly while this change will also be reflected by the parent item?
Any help would be appreciated.
Greetings,
Patric
I encountered a problem when using the NotifyParentProperty. It seems like when this property is set to "true", the focus will automatically move to the parent property after the child property was edited.
For example, if you have the following object (I customed the demo in the Sample browser to reproduce this issue):
public class ChildObject
{
private double willNotify = 1.0;
private double willNotNotify = -1.0;
...
}
Is there any possibilty for me to change this behavior so that the user can press and hold the mouse button and the value will change constantly while this change will also be reflected by the parent item?
Any help would be appreciated.
Greetings,
Patric