Users Pricing

forum

Home Forums Get owner of context menu on Button – MindStick

Get owner of context menu on Button

Jayden Bell 2487 16 Aug 2013
Hi Developers!

Title just about says it all.I have a lot of buttons, all of them have the same context menu, I want to determine from the click event which button was rgiht clicked to get there.

This code does not work, placementTarget is null:

private void mi_Click(object sender, RoutedEventArgs e)
{
        Button contextMenuEzen = null;
        MenuItem mnu = sender as MenuItem;
        if (mnu != null)
        {
            ContextMenu ize =(ContextMenu)mnu.Parent;
            contextMenuEzen = ize.PlacementTarget as Button;
        }
}

Please help me!



1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md