Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Getting compile button of NinjaScript Editor in Addon

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Getting compile button of NinjaScript Editor in Addon

    Hello,
    I'm trying to close all my addon windows after clicking on compile button from ninja script editor. I used the following code to get the button from the code but it's not working:

    Code:
    NinjaTrader.Gui.NinjaScript.Editor.EditorView ev = window as NinjaTrader.Gui.NinjaScript.Editor.EditorView;
    if (ev!=null)
    {
    Button compile =ev.FindFirst("Compile") as Button;
    
    }
    Actually i get the following error:

    System.InvalidOperationException: ''NinjaTrader.Gui.NinjaScript.Editor.ScriptItem' is not a Visual or Visual3D.'

    Could you please help?
    Best regards,
    Last edited by zakoun; 02-10-2021, 06:12 PM.

    #2
    Hello zakoun,

    You could write an addon for that purpose or also just put some logic in your existing addon to close its self when terminated.

    When you compile an addon it is terminated and will run its State.Active again, thats why you will see the menu item flash if you look in the control center. You could at that point loop through the open windows and close any existing windows of your type.

    You can loop through the NinjaTrader.Core.Globals.AllWindows collection of windows to find any of your windows.

    If you were doing this from the addon its self that code would go in the base addon class in its State.Terminated, from our sample thats the: public class AddOnFramework : AddOnBase.


    The code could look like the following:

    Code:
    if (State == State.Terminated)
    {
           foreach(NTWindow window in NinjaTrader.Core.Globals.AllWindows)
          {
             window.Dispatcher.InvokeAsync(() =>{
             if(window is AddOnFrameworkWindow)
             {
                window.Close();
             }
          });
       }
    }

    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    85 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    143 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    83 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    257 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    334 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X