Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
52 views

How to get coordinates of ToolStripButton?

How can I get coordinates of ToolStripButton?
3
votes
2answers
486 views

Why is a NullReferenceException thrown when a ToolStrip button is clicked twice - openFileDialog.showDialog()?

I created a clean WindowsFormsApplication solution, added a ToolStrip to the main form, and placed one button on it. I've added also an OpenFileDialog, so that the Click event of the ToolStripButton ...
2
votes
2answers
539 views

ToolStripButtons BackGround property problem in winform

My goal is totally fit image in toolStripButton and toolStripDropDownButton. If a image in the button set with image property, I can not totally fit the image in the button. Because of margin, ...
2
votes
1answer
2k views

How to change System.Windows.Forms.ToolStripButton highlight/background color when checked?

I have a ToolStripButton that is used as a radio button. When it is checked, a blue outline surrounds the button, but there is no background color. It is not clear enough for the user that the button ...
2
votes
3answers
952 views

How do I change the cursor for a ToolStripButton?

I want to change the user's cursor when they hover over a specific ToolStripButton, but not for the other items on the ToolStrip. How do I set the button's cursor?
1
vote
1answer
307 views

Unable to create multi line icon captions in C# toolstrip control

I've been trying and trying to get the standard C# toolstrip control to format button text as multiline, and so far I've had to admit defeat. What I'm trying to achieve is text under the picture, ...
1
vote
1answer
208 views

.NET Multiple ToolStripButtons in a single ContextMenuItem

I'm trying to create a ContextMenu where some items in the menu contain more than a single item. You could see it as trying to combine a ToolStrip and ContextMenuItem. I've tried using a ...
1
vote
0answers
239 views

toolstripbutton remove lighting

I have a toolstripbutton into my toolstrip, and I wish remove the orange lighting when a mouse is hover, because I change the picture of the button dynamically.. How can I do this?
1
vote
2answers
671 views

C# Question:Dynamically Disable ToolStripMenuItems/ToolStripButtons in an MDIParent Form: Which Event?

Any guidance on the following issue would be greatly appreciated. In which MDIParent event should I disable the items/buttons? Activated? On program Launch, I want the buttons disabled. If there are ...
1
vote
2answers
981 views

ToolStripButton: what's wrong with assigning an image programmatically

There is a Form with a ToolStrip. This ToolStrip contains a ToolStripButton. I want to assign an image to this button: this.btnSaveFile.Image = Bitmap.FromFile("C:\\Work\\Icons\\png\\save.png"); It ...
1
vote
2answers
456 views

Toolstripbutton text gets cut off in contextmenustrip

i am instantiating my own ToolStripButton and adding it to a contextmenustrip it pops up but the text gets cut off: string[] layouts = new string[]{"Test 1", "test 2", "test 3"} ...
1
vote
4answers
3k views

How do I add a ContextMenuStrip to a ToolStripButton?

I have a toolstrip containing, among other things, a ToolStripComboBox and a ToolStripButton. I want to add a ContextMenuStrip to both of them, but I don't have direct access to the toolstrip or its ...
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
0answers
72 views

Custom toolstripbutton default image

this question was asked before How to change default image of derived ToolStripButton? but didn't have a proper answer. I have toolstripbutton that I want to reuse in several toolstips. I have ...
0
votes
0answers
90 views

How reuse two ToolStripButton that works as single toggle button in ToolStrip?

I have two ToolStripButton that work as single toggle button. I want reuse this two ToolStripButton later in other ToolStrip. How i can create control/component/whatever and use it later in some ...
0
votes
1answer
290 views

C# inform how would one change an image on the toolstrip after it is selected

I am looking to change the image of the button on the tool strip after it is selected. The image property is system.drawing.bitmap and was saved to Properties\Resources.resx file. Thanks in advancen ...
0
votes
1answer
264 views

toolstripbutton with images for each state

I have in my app a ToolSrip with some ToolStripButtons. I wish add not only the basic image, but an image for the hover state and another for the clicked state, and if possible, remove the orange ...
0
votes
1answer
141 views

Really strange ToolStripButton event problem

I am making a CustomControl based on a ToolStripButton control, I am trying to know when the mouse is Hover the button to draw it differently. Here is a quick view of my code : private bool ...
0
votes
2answers
943 views

How to change default image of derived ToolStripButton?

It seems like a simple task. Create a C# class that derives from ToolStripButton. The derived ToolStripButton should behave exactly the same as the parent class in the designer and the application, ...
0
votes
3answers
949 views

How do I get a disabled ToolStripButton to paint its image in colour?

We have a button which allows users to 'lock' a form. Users are not permitted to 'unlock' the form, so when pressed, we want the button to be disabled, so that the user receives appropriate visual ...