Tagged Questions
The toolstripdropdown tag has no wiki summary.
2
votes
1answer
235 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 ...
1
vote
0answers
39 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 ...
1
vote
1answer
534 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 ...
1
vote
1answer
356 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 ...
1
vote
2answers
179 views
ToolStripDropDownButton, how to remove all DropDownItems?
How to remove all DropDownItems from a ToolStripDropDownButton, if its propery is read only?
1
vote
2answers
807 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
22 views
ToolStripDropDown control preventing MouseMove events from firing
I have a custom ToolTip class that is displayed in a ToolStripDropDown that is preventing MouseMove events from firing on the controls it is associated with.
My tool tip class has a method to add a ...
0
votes
1answer
76 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
158 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
156 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 ...
0
votes
0answers
115 views
ToolStripDropDown Resets position (Move) when closing
Using some code found on this site (great article) that uses a ToolStripDropDown to show information beyond the display area of a current form (we use it for pop-up help).
public ...
0
votes
2answers
435 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
109 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 ...
0
votes
0answers
614 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.
...