通过API将工具提示添加到Enterprise Architect的“加载项”菜单中

时间:2019-04-08 11:37:40

标签: menu tooltip enterprise-architect

我正在使用C#加载项开发Enterprise Architect。我正在尝试检查“加载项”菜单项,还添加工具提示以显示有关该功能的信息。

我尝试了以下代码:

public void EA_GetMenuState(EA.Repository Repository, string Location, string MenuName, string ItemName, ref bool IsEnabled, ref bool IsChecked)
    {
        //Enables the menu if the project is open
        if (IsProjectOpen(Repository))
        {
            IsEnabled = true;
            if (ItemName.Equals("Help"))
            {
               //check the menu
                IsChecked = true;
            }
        }

菜单项检查工作正常,但找不到将工具提示添加到菜单的选项。

我引用了此链接:  https://sparxsystems.com/forums/smf/index.php?topic=4129.0中提到了对工具提示的功能要求。

是否可以通过EA版本12.1中的加载项设置菜单工具提示?

1 个答案:

答案 0 :(得分:1)

不,那不可能。

您可以发送自己的feature request,以增加请求的分量。