The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
23 views

Dark Control for C# Winforms [closed]

Where can I find a dark toolstrip control for C# Winforms. I looked at this http://toolstripcustomizer.codeplex.com with the dark theme but it did not suit my needs. Something with a dark compression
0
votes
0answers
39 views

ToolStripItemDesignerAvailability not working in a C++ Forms Application

I wrote my own ToolStripItem (e.g. ToolStripTrackBar or ToolStripButton with my on interface) and I want to have design time support. According to several guides, I've to use: ...
0
votes
0answers
110 views

C# Custom Toolstrip and more

I want to create a Custom ToolStrip with Buttons/Components already defined such that it can be dragged and dropped on any windows form. When I use Visual Studio to create such an project, I get a ...
0
votes
1answer
56 views

C# new Form return Value not recognised by Mainform

I open an additional form through a Toolstrip to enter a Username that will be needed in the Mainform (and is declared as String in the Mainform) Code of Mainform: private void ...
0
votes
0answers
56 views

ToolStrip acts strangely when minimizing and restoring form

I have a ToolStrip docks at the left of a form, contains some buttons with 90-degree-rotated text (similar to the the ToolTrip docks at the left of Visual Studio). I enabled AutoSize for the ...
2
votes
1answer
76 views

Add a button to the left of a toolstrip

I have a ToolStrip object which has a few ToolStripButtons. I want to add a vertical button on the left side of this object. But since the ToolStrip is docked to the left, I can't seem to add anything ...
-1
votes
3answers
64 views

Change BackColor of ToolStripSeparator c# [closed]

Is it possible to change the BackColor of ToolStripSeparator control? there is a property in the designer,but i cannot change the backcolor
0
votes
1answer
81 views

Toolstrip.Items.AddRange(ToolStripCollection) has odd behavior

Part of an application I'm working on involves a dynamic ToolStrip where items are added and removed depending on the application's state. Currently I'm storing the items in various independent ...
1
vote
1answer
66 views

how to open ToolStripMenuItem Window by moving mouse on ToolStripSplitButton

I have four ToolStripSplitButtons in a ToolStrip in one of my c# applications as shown here. To open ToolStripMenuItem window I have to click on any of the four ToolStripSplitButtons. As opposed ...
2
votes
1answer
144 views

C# DragDrop from toolStrip

I'm looking for a way to determine which item in a toolStrip that was dragged after a DragDrop event has occured, all I want to do is make a switch case with different cases for each item in the ...
2
votes
1answer
86 views

Troubles with updating ToolstripDropdownButton after window loses focus

Let me start from a simple example to reproduce my problem: Create WinForms project. Drop a ToolStrip on it. Make a ToolstripDropdownButton in it (with no children). Add a click event-handler to the ...
0
votes
0answers
82 views

ToolStripButton Tooltip location is wrong

I have a ToolStrip that have a couple of ToolStripButtons with tooltips. When I highlight any of the buttons the tooltip shows just fine but its location is a bit far from the cursor. I got no idea ...
4
votes
3answers
275 views

Moving toolstrip just a little too far left will create a new row if another toolstrip is on the same toolstrip panel

When I drag a toolstrip to the left (perhaps just to get it in the corner) with another toolstrip in that same toolstrip panel, the one I'm dragging jumps down to a 'new' row, as if I had moved it ...
1
vote
1answer
224 views

How to avoid 3 pixel gap on left of ToolStrip in Winforms?

I'm using Windows 7 and Winforms/C#. When I add a toolstrip to a toolstrip container, I get 3 pixels of space to the left of the toolstrip. Even if I set the location to 0,0, it resets it back to ...
0
votes
0answers
78 views

How do I ensure my ToolStripComboBox is properly rendered in a ToolStrip?

Is there a way to ensure that a ToolStripComboBox is "properly rendered" in a toolstrip when the window width means that the ToolStripComboBox is not showing? In the following form, which has a ...
1
vote
1answer
83 views

How do you keep a ToolStripSplitButton within the bounds of its container

I am developing a windows forms application with C# My main form has a toolstrip with a ToolStripSplitButton which is aligned to the right. When the split button is clicked, its menu displays over ...
1
vote
1answer
115 views

Create ToolStripMenuItem with checked items

I need create one item in my ToolStripMenuItem with this feature: if I check it, in application is turn on "stay on top" property. I tryed this code: private void ...
0
votes
2answers
114 views

General recursive method for iterate all controls and their related controls in a windows form

Is there any general recursive method that can iterate all controls(include toolstrip and its items, bindingnavigator and its items,...) in a windows form? (some of them are not inherited from Control ...
0
votes
0answers
255 views

c# toolstripcombobox add colors

What do I wrong? Got a toolstrip with a combobox List<Color> myColors = new List<Color>() { Color.Red, Color.Blue, Color.Green, Color.Yellow, Color.Purple, Color.Brown }; ...
0
votes
1answer
201 views

Unable to set focus on ToolStrip button

I have tried to research this all morning and found no solution that worked for me. I have a ToolStrip, with several buttons on it. I am unable to get figure out how to select any of the buttons ...
1
vote
1answer
506 views

.Net Toolstrip/MenuStrip Focus Issues

No matter what the scenario may be I'm able to recreate this annoying problem 100% of the time. Create a .Net project, C# or VB.Net. Add a ToolStrip control to the form. Create a few simple ...
0
votes
0answers
210 views

Visual C# Express 2010 ToolStrip buttons losts icons after restart

I have really weird problem. In my simple project in c#/winforms I had ToolStrip with inserted standard buttons. It was all ok but suddenly after one restart icons just disappeared. Buttons were still ...
0
votes
1answer
407 views

Activate tool strip click event from another form

I need to send a click event to refreshToolStripMenuItem from another form. Here is what I have, for some reason it doesn't work. Help please. Menu item click: public void ...
1
vote
1answer
78 views

ToolStripTextBox1.ScrollBars = Windows.Forms.ScrollBars.Vertical

Quick question. Using VS2012, .net framework 4.5, VB on win7 x64. Trying to create a message holder in my status bar, to display long exception messages when something goes wrong in my app. I ...
0
votes
2answers
366 views

ToolStripManager not restoring Location of Toolstrips

ToolStripManager does not restore my Toolstrips to the previous locations as expected. I created a very simple app to demonstrate. I contains 4 movable Toolstrips in a ToolStrip Container. I move the ...
1
vote
1answer
709 views

Check only one ToolStripMenuItem

I have a ToolStrip with multiple ToolStripDropDownButtons, each has a set of DropDownItems. When the user clicks on an DropDownItem, the check mark is shown. By default, multiple items can be ...
0
votes
0answers
116 views

Toolstrip renderer renderer vb.net

How can I display the correct context menu on a toolstrip dropdown button using a custom renderer in vb.net. I have tried but with fail, it doesn't have the separator and the buttons split isn't ...
1
vote
1answer
263 views

Horizontal Separator for ToolStripDropDown list

I'm creating a ToolStripDropDownButton with three ToolStripButtons. And I want to add a Separator after the second button. Here's the code I have. using System; using System.Drawing; using ...
3
votes
1answer
793 views

ToolStrip Rounded Corners

I am working on a Windows Form app (C#, .NET 4.0, VS 2010), where I have a pretty standard MainForm with a ToolStrip (GripStyle: Hidden, Dock: Top, RenderMode: ManagerRenderMode). The toolstrip ...
0
votes
0answers
149 views

code adjustment in a style module vb.net 2008

I have module to make toolstrip control look like in office 2007 module works fine but on drawing item text i want to change the string format. But when i change the string format then text of items ...
0
votes
1answer
119 views

c# - PrintPreviewDialog: What is the name of the toolstrip to get it through reflection

I would like to know what is the correct name of the printpreviewdialog's toolstrip to get it through reflection. I want to know the correct name to use from windows xp, vista and seven. I do no know ...
0
votes
0answers
249 views

Switching through ToolStrip items doesn't work properly

I figured out some strange behaviour in C# Windows-Forms: I have a simple forms containing a TextBox and a ToolStrip. The toolstrip contains a button, a textbox and another button (in this order). ...
0
votes
1answer
66 views

Reset 'keyboard cues' in ToolStrip

We display a sub-dialog from a cell of our grid control. The dialog contains a ToolStrip with items with ampersands to quickly access them from the keyboard. All works fine: we can press ALT to show ...
0
votes
1answer
493 views

SmartGWT add the same member several times to a Layout

I have a grid and I need to add just before and just after it 2 links. They are the same, they just need to be visible both above and below the grid. I put them in a ToolStrip and add the ToolStrip as ...
0
votes
0answers
285 views

Check/Uncheck button on MenuStrip, disabling others

I want to include multiple languages in my application. The user should be able to choose a language from the Language MenuStrip When any of the languages is selected, the setLanguageToGerman() ...
0
votes
0answers
107 views

Why do my ToolStripButtons and ToolStripMenuItems keep disapearing?

The ToolStripButtons and ToolStripMenuItems keep disappearing from the menu strip and tool strip. It seems to think they are still there (If I try to rename the button to the name of the pervious ...
0
votes
1answer
99 views

How do I use an item that's a child of a toolstrip item?

Ok, so this is somewhat confusing, so bear with me. I have a toolStrip item called "Downloads". When (and this is 100% random) a new item is added (it occurs when a website that I have no control ...
0
votes
1answer
230 views

ToolStrip TextBox Colour

I have set up a ToolStrip in my C# WinForms project and have added a TextBox on it. I'm just curious whether it is normal that the TextBox is barely visible due to the colour of the ToolStrip and ...
1
vote
0answers
269 views

c# toolstrip dropdownbutton textbox validate on enter key?

I have a toolstrip dropdownbutton which contains textbox in the dropdown menu. I'm trying to make it fire Validate event properly when enter key is pressed. I have this simple code: private void ...
0
votes
2answers
438 views

how to create event on variable toolstrip menu item C#

I have produced some code to display each printer installed and online in a menu item. But I can not figure how to raise an event when the menu item is clicked. I removed the code where I obtain the ...
0
votes
2answers
283 views

Do I need to call dispose on ToolStripPanel, ToolStrip, and ToolStripItems?

I build a ToolStripPanel in code where I add a ToolStrip and subsequently add several ToolStripButtons and ToolStripSeparators. Do I need to manually go through and remove and/or call dispose on each ...
1
vote
1answer
787 views

ToolStrip Control, how to programmatically access click event

I have the following code: Private holdAllDataFromFile As New list(Of String) holdAllDataFromFile = ReadWrite.ReadAll(FILE_PATH) 'Uses custom class to read/write. For Each item In ...
0
votes
1answer
128 views

Why am I getting a vertical line on toolstrip?

I have two Windows Forms toolstrips that contain some controls on a form. However, for some strange reason, they contain a vertical line on the right hand side. I cannot find any property to remove ...
0
votes
5answers
231 views

C#, Application.exit() isn't working as expected

I have 2 forms (main and login). I open the login form with this piece of code: toolStripProgressBar1.Value = 50; toolStripStatusLabel_dynamic.Text = "Proberen toegang te verkrijgen..."; Login login ...
1
vote
1answer
207 views

Add object other than string to ToolStripDropDownButton DropDownItem

It's easy to add strings to a ToolStripDropDownButton as a new DropDownItem. What I need is to add a custom object to the DropDownItems so that I can assign a key/value like object to the ...
0
votes
1answer
155 views

ToolStrip with ToolStripDropDownButton inside looks weird

I have two versions of a Windows Forms Application and can't figure for the life of me how to get a particular GUI behavior to be the same without copying the entire code (which is an obvious no-no). ...
0
votes
1answer
345 views

Failure to show toolstrip

I am attempting to add a simple toolstrip however I can't get it to show up on the screen here is all the code pertaining to it. Did I leave anything out? Field: protected ToolStrip ...
0
votes
1answer
980 views

Focus on toolstrip button vb.net

I created a toolstrip with some buttons. I have a form with some objects (like textbox,checkbox,button etc.) and when i get the focus on last item,when i finish to compile i need with tab on keyboard ...
0
votes
0answers
160 views

C++/CLI Windows Forms ToolStrip application fails with eror CLR20r3, privacy issue?

I have this problem while developing with Windows Forms and C++/CLI. My application will work as long as I don't insert a button in the ToolStrip (Labels and others are ok). I presume that it has ...
1
vote
0answers
227 views

How to keep focus on a ToolStripControlHost's Owner in a ToolStrip

Using C# with .Net 2.0 (though the problem occurs in 4.0) There appears to be a bug involving the focus of the ToolStrip control and ToolStripControlHosts in Windows Forms. Consider this example: ...

1 2 3 4