当前位置: 首页>>代码示例>>C#>>正文


C# EA.ActivateTab方法代码示例

本文整理汇总了C#中EA.ActivateTab方法的典型用法代码示例。如果您正苦于以下问题:C# EA.ActivateTab方法的具体用法?C# EA.ActivateTab怎么用?C# EA.ActivateTab使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在EA的用法示例。


在下文中一共展示了EA.ActivateTab方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: EA_MenuClick

 /// <summary>
 /// Called when user makes a selection in the menu.
 /// This is your main exit point to the rest of your Add-in
 /// </summary>
 /// <param name="Repository">the repository</param>
 /// <param name="Location">the location of the menu</param>
 /// <param name="MenuName">the name of the menu</param>
 /// <param name="ItemName">the name of the selected menu item</param>
 public override void EA_MenuClick(EA.Repository Repository, string Location, string MenuName, string ItemName)
 {
     switch (ItemName)
     {
         case menuComparetoDatabase:
             this.compareDatabase();
             Repository.ActivateTab(compareControlName);
             break;
            case menuCompleteDBwithDLL:
             this.completeDBwithDLL();
             break;
         case menuAbout :
             new AboutWindow().ShowDialog();
             break;
         case menuSettings:
             new EADatabaseTransformerSettingsForm(this.settings).ShowDialog();
             break;
     }
 }
开发者ID:GeertBellekens,项目名称:Enterprise-Architect-Toolpack,代码行数:27,代码来源:EADatabaseTransformerAddin.cs

示例2: EA_MenuClick

 /// <summary>
 /// Called when user makes a selection in the menu.
 /// This is your main exit point to the rest of your Add-in
 /// </summary>
 /// <param name="Repository">the repository</param>
 /// <param name="Location">the location of the menu</param>
 /// <param name="MenuName">the name of the menu</param>
 /// <param name="ItemName">the name of the selected menu item</param>
 public override void EA_MenuClick(EA.Repository Repository, string Location, string MenuName, string ItemName)
 {
     switch (ItemName)
     {
         case menuMapAsSource:
             this.mappingControl.loadMappingSet(this.getCurrentMappingSet(true));
             Repository.ActivateTab(mappingControlName);
             break;
         case menuMapAsTarget:
             this.mappingControl.loadMappingSet(this.getCurrentMappingSet(false));
             Repository.ActivateTab(mappingControlName);
             break;
         case menuAbout :
             new AboutWindow().ShowDialog();
             break;
         case menuSettings:
             //TODO
             break;
     }
 }
开发者ID:GeertBellekens,项目名称:Enterprise-Architect-Toolpack,代码行数:28,代码来源:EAMappingAddin.cs


注:本文中的EA.ActivateTab方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。