简体   繁体   中英

ButtonClick in DropDown not working in VS2010/Outlook2010

I'm working on an add-in for Outlook 2010. I've created a new Ribbon Tab with a dropdown box. I'd like for the data in the dropdown to update when I click the dropdown button, but nothing is occurring. I've written the sample code below for testing purposes and nothing fires:

        private void dropDown1_ButtonClick(object sender, RibbonControlEventArgs e)
    {
        MessageBox.Show("Dropdown CLick");
    }

This is as simple as it gets, but nothing is firing. Any ideas of what I might be doing wrong? The only other code that exists in this ribbon right now is what loads the data.

Thank you

From my understanding

private void dropDown1_Click(object sender, RibbonControlEventArgs e)
{
    MessageBox.Show("Dropdown CLick");
}

is what you wanna do. No where did I see ButtonClick as the proper tag.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM