Hi everyone,
Is there a way to know (through documentation or other methods) which is the prototype for an handler method?
For instance, if i want to use:
<ContextMenuEvents OnOpen="OnOpenSingle" Opened="OpenedSingle"></ContextMenuEvents>
I then have to define the methods "OnOpenSingle" and "OpenedSingle" in c# code... but with which parameters? (not all of such methods have zero parameters)
Where or how can i find this information? In the current documentation it is not specified and VisualStudio 2019 does not help me.
Thanks in advance for your response.