If I understood your question correctly, you have a ToolStripComboBox as an item of a ToolStripDropDownButton and want to close dropdown when an item of combobox is selected; so you can do this:
private void toolStripComboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
((ToolStripItem)sender).PerformClick();
}