Hello All,
I'd like to two-way data bind MaskedEditorTool. However, MaskedEditorTool.Value is not a dependency property, so I run into the following problems:
1. If I try to use MaskedEditorTool.Value as the target, I will fail because data binding requires that the target be a dependency property
2. If I try to use MaskedEditorTool.Value as the source, I will fail because change notification does not occur with non-dependency properties
May I request suggestions on how to two-way data bind MaskedEditorTool?
Thanks,
Dave
I'm not sure what you mean. The MaskedEditorTool derives from XamMaskedEditor which derives from ValueEditor. ValueEditor defines the Value property and it is a DependencyProperty.