Hab was gefunden
// ToolStrip einfügen, darauf eine toolStripComboBox1 einfügen.
// Click-Handler durch Doppelklick darauf erzeugen.
private void Form1_Load(object sender, EventArgs e)
{
MenuStrip ms = new MenuStrip(); ms.AutoSize = false;
ms.Size = Size.Empty;
ToolStripMenuItem tsi = new ToolStripMenuItem();
tsi.Size = Size.Empty;
tsi.ShortcutKeys = (Keys)Shortcut.CtrlS; // wie’s beliebt
ms.Items.Add(tsi);
tsi.Click += new EventHandler(tsi_Click);
Controls.Add(ms);
}
void tsi_Click(object sender, EventArgs e)
{
toolStripComboBox1_Click(toolStripComboBox1, EventArgs.Empty);
}
private void toolStripComboBox1_Click(object sender, EventArgs e)
{
MessageBox.Show(„Combo geklickt!“);
}
Thomas