The toolstripdropdown tag has no wiki summary.
0
votes
0answers
11 views
Retrieve Parent ToolStripItem from a ToolStripDropDown in WinForms C#
I have some dinamically generated textboxes in my application.
When the textboxes are generated, a ContextMenuStrip is generated along with them, too.
In every ToolStripMenuItem i use this code to ...
0
votes
0answers
14 views
C# ToolStripDropDownButton weird behavior (losing focus?)
On a child form I have a ToolStrip with a ToolStripDropDownButton. Attempting to click the DropDownButton causes the form to hide behind the parent form. It doesn't matter what other interactions ...
0
votes
0answers
6 views
show method shifts ToolStripDropDown location
I have a ToolStripDropDown control that displays html content in it upon clicking a button. I use the button location.X and location.Y to decide where that toolstrip is displayed.
When I click on the ...
1
vote
1answer
72 views
ToolStripDropDown loses mouse autoclose
Not sure how to explain this, but:
there is a control MyPopup, made out of ToolStripDropDown;
there are many based on MyPopup controls (call them popups);
there are no problems to open popup from ...
0
votes
2answers
200 views
Windows Forms - ToolStripItem Visible property is always set to false
I'm working on a MDI Windows Forms application. My parent form has ToolStrip menu and some ToolStripDropDownButtons. I want to change the Visible property of the ToolStripDropDownButton or to some of ...
0
votes
2answers
98 views
C# - set string as an EnumValue
I have a ToolStripMenu with several ToolStripDropDownButtons. Those dropDownButtons have ToolStripMenuItems on themselves (sub buttons). I need to set visibility permission and the issue is that a ...
0
votes
1answer
65 views
ToolStripMenuItem Clear Method - will it remove also subitems?
Will myStrip.DropDownItems.Clear() remove also SubItems?
mystrip
- Item1
- SubItem1
- AnotherSubItem1
- Item2
After Clear() method
will it be just:
mystrip
or
...
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
1answer
125 views
Setting ToolStripDropDown.DropShadowEnabled to false on multi level dropdowns
I want to disable the dropdown shadow on the dropdown of a ToolStripDropDownButton. If the dropdown menu contains items that have dropdowns themselves (e.g. multi-level menu) then setting the ...
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 ...
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 ...
1
vote
0answers
155 views
ToolstripControlHost causes toolstrip to not disappear when the program execution is paused
I am trying to build a custom WinForms ToolStripDropDownMenu. I need custom menu items so I am using ToolStripControlHosts. The problem is that when the menu is open and I hit a breakpoint the menu ...
0
votes
0answers
114 views
Forward Key Events to Parent ComboBox
Alright, so I am attempting to create a combo box that displays a filtered list of options to the user as (s)he types free-form text into the combo box control. My approach was taken from ...
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 ...
1
vote
1answer
152 views
Capture mouse messages when a ToolStripDropDown is shown
I am trying to create a "tooltip" which contains a custom control. I implemented it using ToolStripDropDown which does what I need - closes when the user clicks somewhere else, or activates another ...
3
votes
3answers
603 views
Disable selection and drop down symbol of a tool strip drop down button
Is there a way to prevent a tool strip drop down button from being selected (without disabling it)?
I see it has a property called CanSelect, but it's read-only.
As for my second question related to ...
0
votes
0answers
87 views
Is it possible to put “regular” (large, with text caption) buttons on a ToolStrip or a StatusStrip?
I would like to put "normal" buttons (not necessarily ToolstripButton, toolstripSplitButton or toolstripDropdownButton) on a ToolStrip or a StatusStrip. By normal I mean larger than the puny button ...
1
vote
1answer
175 views
Show toolbar via ToolStripDropDownButton.DropDownItems?
In my toolbar, I have a System.Windows.Forms.ToolStripDropDownButton where I want to show another toolbar. I managed to get it 'working' by adding my toolbar buttons to the DropDownItems collection:
...
0
votes
1answer
143 views
Cancel ToolStripDropDownButton dropdown
I need to programmatically cancel the dropdown of a ToolStripDropDownButton in the DropDownOpening event. However I cannot figure out a way to achieve this.
0
votes
1answer
144 views
How can I get a ToolStripDropDownButton to align to the right edge of a StatusStrip?
I don't see a likely property on either the StatusStrip or the ToolStripDropDownButton - other than the Alignment property of the ToolStripDropDownButton, which doesn't help.
Will I have to add ...
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
112 views
How to make ToolStripDropDownButton items font bold?
I'm trying to format ToolStripDropDownButton items
btn1.DropDown.ForeColor = Color.Gray; //this works
btn1.DropDown.Font.Bold = true; //this doesn't work.
Please, help.
0
votes
1answer
312 views
How to get a string from ToolStripDropDownButton item clicked?
btn1 is ToolStripDropDownButton
How can I say this
private void btn1_DropDownItemClicked(object sender, ToolStripItemClickedEventArgs e)
{
MessageBox.Show(btn1.CurrentItem.Text.ToString()); // ...
2
votes
2answers
287 views
How to change backcolor of an open ToolStripDropDownButton?
I need to change back-color of a ToolStripDropDownButton when its drop-down is opened. How can I do it?
I tried to inherit a class from the ToolStripProfessionalRenderer and then override the ...
1
vote
1answer
472 views
Disabling visual styles for ToolStripDropDownMenu
I'm trying to prevent MenuStrip control to be affected by visual styles.
So I've created simple form with simple menu strip and disabled visual styles in Main():
// Application.EnableVisualStyles(); ...
0
votes
2answers
496 views
How to eliminate the blue focus on ToolStripDropDownButton when mouse is above the control
I use ToolStripDropDownButton with Forecolor is white and Backcolor is trasparent. Text of "ToolStripDropDownButton" unreadable when mouse is above the control because "blue focus" is visible.
How to ...
4
votes
1answer
362 views
Can the VS “cascading style sheet version for validation” default be changed?
In reference to these related questions, I have had CSS3 validation set up in VS2010 for a while.
However each time I close a CSS file, the "cascading style sheet version for validation" dropdown in ...
0
votes
1answer
452 views
ToolStripControlHost stays always at top (C# window forms)
I built a form, in this form i built a ToolStripControlHost:
ToolStripDropDown popup = new ToolStripDropDown();
popup.AutoClose = false;
popup.Margin = Padding.Empty;
popup.Padding = Padding.Empty;
...
0
votes
2answers
550 views
Mouse cursor disappears when textbox at ToolStripDropDown editing
I have a user control with RichTextBox and two buttons on it. I'm trying to show that at ToolStripDropDown on ToolStripButton click. I'm using ToolStripControlHost to put my control at ...
0
votes
1answer
464 views
C#: ToolStripDropDown doesn't Dispose/DestroyHandle
I'm using the ToolStripDropDown to show up an selectionpopup.
The ToolStripDropDown contains a few custom controls with running Threads.
The Threads ends with the OnHandleDestroyed event, but for ...
3
votes
1answer
2k views
How to sort items in ToolStripItemCollection?
I add strings (items) dynamically to a ToolStripItemCollection by:
Dim onClickHandler As System.EventHandler = New System.EventHandler(AddressOf Symbol_Click)
Dim item As New ...
2
votes
1answer
853 views
Owner-Drawn ToolStripDropDownButton
I'm writing some custom behavior for a ToolStripDropDown control. I'd also like to modify the ToolStripDropDownButton itself to display a colored shape.
I see that I can handle the Paint event and ...
2
votes
1answer
596 views
ToolStripSplitButton behavior override
I'm trying to understand what do I have to do to override the behavior of the ToolStripDropDown control on System.Windows.Forms where if you use this constructor:
var button = new ...
0
votes
2answers
1k views
about toolStripDropDownButton
I have a form. I've added the strip down button using drag and drop in the form. How can I (in the program) create and fill the toolStripMenu Item? My menu could contain different element...with ...
0
votes
1answer
241 views
How to Print Names of all menuitem in C#
Dear sir,
I am new to programming. I need to Get a list of ALL menuItems (ToolStripMenuItems) including Dropdown menuitems. I found some codes, but it list Main Menu Items only, No Dropdown ...
1
vote
2answers
388 views
ToolStripDropDownButton, how to remove all DropDownItems?
How to remove all DropDownItems from a ToolStripDropDownButton, if its propery is read only?
1
vote
2answers
2k views
How to scroll in a fixed-size ToolStripDropDown
I am using a ToolStripDropDown control to implement the dropdown portion of a custom ComboBox-like control. In order to be visually appealing, I am imposing a MaximumSize on the dropdown and manually ...
0
votes
0answers
997 views
ToolStripDropDown AutoClose not working correctly in all scenarios
I have the following setup:
1- A ToolStripDropDownButton with a ToolStripDropDown that contains a CustomUserControl that contains a ListView.
2- The ListView has a ContextMenuStrip associated to it.
...



