Writing code in a menu Handler

I was just writing some code in a Menu Handler and I wanted to refer to the MenuItem with this handler.
I thought I should use “Me”, but I’ve seen that both “Self” and “Me” refer to the window.
Is it normal or is it bug?

“Me” refers to the window if you’re in a window event. If you’re in a control’s event, like the button action, “me” refers to the button.

“Self” in the button action still refers to the window.

Thanks Christoph,
So I must understand that a Menu Handler event is a window event. I was confused because I thought that a menu item was kind of a control.