Codeviewer Plugins Area

The UI elements placed in this region will pop up under the main code viewer area.

CodeViewerPluginArea

Example

C#
[ModuleExport(typeof(PluginModule))]
public class PluginModule : IModule, IPartImportsSatisfiedNotification
{
    public void OnImportsSatisfied()
    {
        this.regionManager.AddToRegion("PluginRegion", PluginRegionView);
    }
}
In this article