Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
60 views

How to change the checked state of a ToolStripItem in Winforms?

When I look it up, they list it as having a .Checked property. But both in Visual Studio and on msdn, it doesn't list any kid of Checked property. ContextMenuStrip menu = new ContextMenuStrip ( ); ...
1
vote
1answer
403 views

Display UAC shield icon on a ToolStripItem

is there a recommended way (like sending BCM_SETSHIELD to a button control) to display the UAC Shield icon on a ToolStripItem? ToolStripItem is not a control anyway, so i wonder what the best-practise ...
1
vote
1answer
361 views

Only display ToolStripMenuItem icons

I have a Windows Forms ToolStripSplitButton which shows only an icon. I have added some ToolStripMenuItems and I have set their DisplayStyle to ToolStripItemDisplayStyle.Image. The drop down display ...
1
vote
1answer
726 views

How do I disable the toolstripitems on BindingNavigator?

I want to enable or disable the toolstripitems on the bindingnavigator programmatically. When I try to set the toolStripitem's enable property, it does not change. It does not give any exception but ...
1
vote
2answers
3k views

How do I programmatically wire up ToolStripButton events in C#?

I'm programmatically adding ToolStripButton items to a context menu. That part is easy. this.tsmiDelete.DropDownItems.Add("The text on the item."); However, I also need to wire up the events so ...
0
votes
4answers
374 views

Get item text from context menu

Delurking to ask a question that I can't find an answer for! I have a context menu in C# that I am populating programatically. I change the items in the menu based on what control it is called from. ...
0
votes
1answer
51 views

about the coding of deleteToolStripMenuItem_Click() [closed]

i am not understand the toolStripMenu on delete name as"private void deleteToolStripMenuItem_Click(object sender, EventArgs e)" coding in c#.net. plz someone solve that problem
0
votes
0answers
418 views

toolstripmenuitem subitem - double entries

I am trying to add an event handler to my dropdownitems of my toolstrip. currently when i add the event handler, each time the event is triggered, the dropdownitems are duplicated. My toolstrip menu ...
0
votes
2answers
638 views

how to get a list of a toolstrip control inner controls programmatically

I just noticed the hasChildren method doesn't return the various items in a toolstrip, just because its NOT a container I guess. There is an answer here in SO but it seems to me its far too ...
0
votes
0answers
199 views

toolstripseparator with no line

Is it possible to make a toolstripseparator without the vertical line, but only a space?
-1
votes
0answers
24 views

TabStop on a ToolStripButton

How do I remove the tab stop on a ToolStripItem (e.g. a ToolStripButton)? I have a ToolStrip with numerous items in but I only want the focus to be allowed on the ToolStringTextBoxes. But none of the ...