How to set a declared property with the a reference to the calling object in xaml
How can I set a declared property value to equal a reference to the calling object in xaml.
something equivalent to this in xaml
someobject obj = new someobject();
obj.source= this;
Is it possible to do something like this in xaml?
someobject obj = new someobject(this);
thank you