DropDown 中的 ButtonClick 在 VS2010/Outlook2010 中不起作用
我正在开发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据我的理解,
这就是你想做的。我没有在哪里看到 ButtonClick 作为正确的标签。
From my understanding
is what you wanna do. No where did I see ButtonClick as the proper tag.