Visual Studio 中导入的 Outlook 表单区域上的按钮 TabIndex?

发布于 2024-11-09 15:11:51 字数 578 浏览 0 评论 0原文

我有 OL&VS 2010。如果我直接在 VS 中设计表单区域,则 FormRegion.Designer.cs 文件将包含如下定义:

this.SomeButton = new System.Windows.Forms.Button();

但如果在 OL 中设计并导入,则定义为:

this.SomeButton = (Microsoft.Office.Interop.Outlook.OlkCommandButton)GetFormRegionControl("SomeButton");

My问题是 System.Windows.Forms.Button 有一个 TabIndex 属性,我可以通过编程方式设置它,但是 Microsoft.Office.Interop.Outlook.OlkCommandButton< /代码> 没有。

如何更改 OlkCommandButtonTabIndex

I have OL&VS 2010. If I design a form region directly in VS, then the FormRegion.Designer.cs file will contain definitions like:

this.SomeButton = new System.Windows.Forms.Button();

but if designed in OL and imported, the definitions are:

this.SomeButton = (Microsoft.Office.Interop.Outlook.OlkCommandButton)GetFormRegionControl("SomeButton");

My problem is that a System.Windows.Forms.Button has a TabIndex property that I can programmatically set, but a Microsoft.Office.Interop.Outlook.OlkCommandButton does not.

How can I change an OlkCommandButton's TabIndex?

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

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

发布评论

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

评论(1

夏日落 2024-11-16 15:11:51

我能够将 Microsoft.Office.Interop.Outlook.OlkCommandButton 转换为 Microsoft.Vbe.Interop.Forms.Control 并访问元素的 TabIndex 就这样。

编辑 - 确认: http ://blogs.msdn.com/b/rgregg/archive/2007/10/01/common-properties-on-outlook-controls.aspx

I was able to cast a Microsoft.Office.Interop.Outlook.OlkCommandButton to a Microsoft.Vbe.Interop.Forms.Control and access the element's TabIndex that way.

Edit - Confirmed: http://blogs.msdn.com/b/rgregg/archive/2007/10/01/common-properties-on-outlook-controls.aspx

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