本文整理汇总了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;
}
}
示例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;
}
}