DropDown 中的 ButtonClick 在 VS2010/Outlook2010 中不起作用

发布于 2024-10-20 03:16:01 字数 347 浏览 2 评论 0原文

我正在开发 Outlook 2010 的加载项。我创建了一个带有下拉框的新功能区选项卡。我希望当我单击下拉按钮时更新下拉列表中的数据,但什么也没有发生。我出于测试目的编写了下面的示例代码,但没有任何触发:

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

这很简单,但没有任何触发。我可能做错了什么有什么想法吗?目前此功能区中存在的唯一其他代码是加载数据的代码。

谢谢

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心奴独伤 2024-10-27 03:16:01

根据我的理解,

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

这就是你想做的。我没有在哪里看到 ButtonClick 作为正确的标签。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文