How to find the node that raises an event?

Hi! I’m trying to create an event associated with a button that belongs to a node in diagram. When the event is fired i receive the name of the button in the arguments of my method but i need to know the name of the node where that button belongs to do several operations . How can i do that? Thanks

Take a look at how Buttons in Nodes are implemented in the samples.
For example, look at Button_Click in the DecisionTree.xaml.cs file.

Thanks again Walter!