1
Answer

How to set a declared property with the a reference to the calling object in xaml

Tarek K

Tarek K

16y
2.7k
1
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

Answers (1)