vote up 0 vote down star

Hi,

I have a context menu that's bound to a list of strings so that each menuitem's text is an element of the string list. Each menuitem is set to the same event handler. What I'm trying to do is to figure out is which menu item was clicked when when the event handler is called.

I would think it would be pretty straight forward to do, but I'm a bit stumped.

If I look at the watch window, there's a menuitem property called FocusedItem. It has the information I need but when I try to use it it doesn't seem to be part of the class and the code doesn't even compile, which I find strange.

Can someone point me in the right direction?

The bit of xaml and code I'm having trouble with:

<MenuItem Header="Add Object"  ItemsSource="{Binding ObjectClassList}" Click="AddObject_Click"/>

    private void AddObject_Click(object sender, RoutedEventArgs e)
    {
        MenuItem menuItem = sender as MenuItem;

        if (menuItem == null)
        {
            return;
        }

        // menuItem.FocusedItem // ?? does not compile


    }

Thanks!

flag

2 Answers

vote up 2 vote down check

This works for me, but not 100% sure it's the right way (it's on the right path though!)

MenuItem m = (MenuItem)e.OriginalSource;

I belive it's correct, as the "container" menuitem is wrapping up the events for the string menu items you've added. The "OriginalSource" will be the click on the string menu item...

link|flag
Ah, yes. That was it. I was using the wrong thing. Plus, getting the text is as easy as getting the Header property as a string. – Steve the Plant Jul 31 at 15:46
vote up 0 vote down

I'm doing something similar in VB- determining the list of items under the View menu at runtime from data in a table.

I need to read the items from the database, sort them by an independent sequencing value, and add them as new menu items. Then, when they click on one of the new menu items, I need to know which one.

Here's my code- HTH:

    Private Sub mdiMain_Load...
menuSeqs = New SortedList
For Each disp In Model.instance.displaySets.Values
If disp.menuText <> "" Then
	menuSeqs.Add(disp.menuSequence, disp.ID) \\ sort list of view menu items by menusequence property
End If
Next

For menuSeqIndex = 0 To menuSeqs.Count - 1
dispSetKey = menuSeqs.GetByIndex(menuSeqIndex)
disp = Model.instance.displaySets(CStr(dispSetKey))
viewChildAdd(disp)
Next

Friend Sub viewChildAdd(ByVal cds As DisplaySet)
	Dim child As ToolStripMenuItem

	child = New ToolStripMenuItem
	child.Name = "mnuView" & cds.ID
	child.Text = cds.menuText
	child.Tag = cds.ID
	AddHandler child.Click, AddressOf mnuViewChild_Click
	mnuView.DropDownItems.Add(child)
End Sub

Private Sub mnuViewChild_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
	Dim tsmi As ToolStripMenuItem

	tsmi = CType(sender, ToolStripMenuItem)
	viewChildShow(Model.instance.displaySet(tsmi.Tag))
End Sub

Friend Sub viewChildShow(ByVal cds As DisplaySet)
	_child = New frmViewChild
	_child.MdiParent = Me
	_child.childDisplaySet = cds
	_child.WindowState = FormWindowState.Maximized
	_child.Show()
End Sub
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.