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

时间:2011-05-24 18:32:27

标签: c# outlook-addin tabindex

我有OL& VS 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的{​​{1}}?

1 个答案:

答案 0 :(得分:0)

我能够将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