vote up 2 vote down star

I have a ToolStripMenuItem called "myMenu"

How can i access this like so:

/* normally i would do: */
this.myMenu... etc

/* but how do i access it like this: */
String name = myMenu;
this.name...

This is because i am dynamically generating ToolStripMenuItems from an xml file and need to reference menuitems by their dynamically generated names

flag

7 Answers

vote up 8 vote down check

Try this

this.Controls.Find()
link|flag
msdn.microsoft.com/en-us/library/… – PoweRoy Oct 8 at 9:55
This worked perfectly thanks – Steve Oct 8 at 10:09
vote up 1 vote down
this.Controls["name"];

This is the actual code that is ran:

public virtual Control this[string key]
{
    get
    {
        if (!string.IsNullOrEmpty(key))
        {
            int index = this.IndexOfKey(key);
            if (this.IsValidIndex(index))
            {
                return this[index];
            }
        }
        return null;
    }
}

vs:

public Control[] Find(string key, bool searchAllChildren)
{
    if (string.IsNullOrEmpty(key))
    {
        throw new ArgumentNullException("key", SR.GetString("FindKeyMayNotBeEmptyOrNull"));
    }
    ArrayList list = this.FindInternal(key, searchAllChildren, this, new ArrayList());
    Control[] array = new Control[list.Count];
    list.CopyTo(array, 0);
    return array;
}

private ArrayList FindInternal(string key, bool searchAllChildren, Control.ControlCollection controlsToLookIn, ArrayList foundControls)
{
    if ((controlsToLookIn == null) || (foundControls == null))
    {
        return null;
    }
    try
    {
        for (int i = 0; i < controlsToLookIn.Count; i++)
        {
            if ((controlsToLookIn[i] != null) && WindowsFormsUtils.SafeCompareStrings(controlsToLookIn[i].Name, key, true))
            {
                foundControls.Add(controlsToLookIn[i]);
            }
        }
        if (!searchAllChildren)
        {
            return foundControls;
        }
        for (int j = 0; j < controlsToLookIn.Count; j++)
        {
            if (((controlsToLookIn[j] != null) && (controlsToLookIn[j].Controls != null)) && (controlsToLookIn[j].Controls.Count > 0))
            {
                foundControls = this.FindInternal(key, searchAllChildren, controlsToLookIn[j].Controls, foundControls);
            }
        }
    }
    catch (Exception exception)
    {
        if (ClientUtils.IsSecurityOrCriticalException(exception))
        {
            throw;
        }
    }
    return foundControls;
}
link|flag
vote up 0 vote down

=]] LOOOOOOOOOOOOOOOOOL

my answer:

string name = "the_name_you_know";

Control ctn = this.Controls[name];

ctn.Text = "Example...";

link|flag
vote up 0 vote down

You can do the following:

private ToolStripMenuItem getToolStripMenuItemByName(string nameParam)

{

        foreach (Control ctn in this.Controls)

        {

            if (ctn is ToolStripMenuItem)
            {
                if (ctn.Name = nameParam)
                {
                    return ctn;
                }
            }
        }
        return null;
    }

link|flag
vote up 0 vote down

Have a look at the ToolStrip.Items collection. It even has a find method available.

link|flag
vote up 1 vote down

Since you're generating them dynamically, keep a map between a string and the menu item, that will allow fast retrieval.

// in class scope
private readonly Dictionary<string, ToolStripMenuItem> _menuItemsByName = new Dictionary<string, ToolStripMenuItem>();

// in your method creating items
ToolStripMenuItem createdItem = ...
_menuItemsByName.Add("<name here>", createdItem);

// to access it
ToolStripMenuItem menuItem = _menuItemsByName["<name here>"];
link|flag
Now THERE'S an idea! +1 (although only works if the control is already in the dictionary) – Charlie Somerville Oct 8 at 9:55
vote up 0 vote down
Control GetControlByName(string Name)
{
    foreach(Control c in this.Controls)
        if(c.Name == Name)
            return c;

    return null;
}

Disregard this, I reinvent wheels.

link|flag
More of a general-purpose-ish solution than Julien's. Still works fine though. – Charlie Somerville Oct 8 at 9:57

Your Answer

Get an OpenID
or

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