How to get a GoNode

I have a GoDocument in which I have a GoNode with a GoImage + GoText and on SingleClick on this image, I open a ContextMenu and on ContextMenu selection I update the GoText value.

I want to get this changing event on my GoView, how can I do that ? but I don’t want to use the DocumentChanged event…

Thanks for help…

You can get the GoView from the menuitem event handler

public void Xyz_Command(Object sender, EventArgs e) {
GoView v = GoContextMenu.FindView(sender as MenuItem);
if (v != null)
v.XyzCommandExecuted();
}