简体   繁体   中英

Adding a structured tagged value through c# add-in in enterprise architect

I have a Add-in in C#, and I am running Enterprise Architect through it. And now I have an access to "system output window" in Enterprise Architect, which can be displayed/docked over EA's GUI. And now I need to get access to "Properties window" by which I can create a new(my own custom tab)like Property dialogue window inside that window.

The Subject is to have a "structured Tagged Values" created from Add-in. And those tagged values have to come inside a "CUSTOMIZED NEW TAB" in the Properties window of an element. For that we need to get the control over the "properties window" in Enterprise Architect from Add-in.

Plz suggest us the way on how to create a "NEW TAB" inside a properties window of an element.

Enterprise Architect does not (yet) have any possibility to extend any existing popup windows with extra tabs. (This is also not possible using MDG technologies. Some MDG technologies extend EA, but these are incorporated in the application and not loaded through a separate XML file.)

The API does offer you an option to create new controls in the form of;

  • Tabs: Repository.AddTab
  • Addin Windows (dockable/floating): Repository.AddWindow

You could show your desired content of an API element in such a control. Or you could, using WPF or Windows Forms, create and show a custom popup window. You could even make that popup window modal as to block any further access (like the properties window does).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM