如何在 Outlook 命令栏上的控件之间创建垂直分隔符?
我正在创建一个 Outlook 2003 插件,它在每个打开的邮件项目上添加一些下拉菜单和按钮。我创建了一个命令栏,并将控件添加到该命令栏。 但是,如果我查看邮件消息上的标准工具栏,每个按钮都由竖线分隔,但在我的工具栏中没有分隔符。 如何在命令栏上的控件之间创建垂直分隔符。 我使用 VSTO 2005SE 和 C# 进行开发。
I am creating an outlook 2003 addin which adds some dropdown and button on each mail item opened.I have created a command bar and have added the controls to that command bar . But if i look at the standard tool bar on mail message, each button is seperated by a vertical bar but in my tool bar there is no seperator. How can i create the vertical seperator between controls on my command bar. I am using VSTO 2005SE and C# for development.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了在控件之间放置分隔符的方法 - 将按钮的 BeginGroup 属性设置为 true。 此属性在控件的开头放置一个垂直条,因此如果按钮是菜单栏上的第一个控件,则此分隔符将不可见,但如果这是栏上的第二个控件,则垂直条将放置在第二个控件之前。
I found the way to put a seperator between controls-set the button's BeginGroup property to true. This property puts a vertical bar at the begining of the control so if the button is the first control on menu bar, this seperator won't be visible but if this is a second control on bar, a vertical bar will be placed before second control.