Debugger Visualizer Winform ToolStripDropDownMenu ComboBox only shows items when first shown
- 阅读更多 关于 Debugger Visualizer Winform ToolStripDropDownMenu ComboBox only shows items when first shown
问题 I have a Visual Studio debugger visualizer project, and when I add a ToolStripComboBox to a ToolStripDropDownMenu , the combobox's items only appear the first time the form is shown. Like this: The most basic version of the winform code showing the issue is this: public class MyVisualizerDialog : Form { public MyVisualizerDialog() { var toolStripComboBox = new ToolStripComboBox { Items = { "One", "Two", "Three" } }; var toolStripDownDown = new ToolStripDropDownMenu { Items = {