我正在使用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中的加载项设置菜单工具提示?