Visual Studio中导入的Outlook窗体区域上的按钮选项卡索引
本文关键字:按钮 选项 索引 区域 窗体 Studio 导入 Outlook Visual | 更新日期: 2023-09-27 17:57:29
我有OL&与2010年相比。如果我直接在VS中设计表单区域,那么FormRegion.Designer.cs
文件将包含以下定义:
this.SomeButton = new System.Windows.Forms.Button();
但如果在OL中设计并导入,则定义为:
this.SomeButton = (Microsoft.Office.Interop.Outlook.OlkCommandButton)GetFormRegionControl("SomeButton");
我的问题是System.Windows.Forms.Button
有一个TabIndex
属性,我可以通过编程设置它,但Microsoft.Office.Interop.Outlook.OlkCommandButton
没有。
如何更改OlkCommandButton
的TabIndex
?
我能够将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