Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Hiding Ninjatrader Superdom control in SuperDom Window

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

    Hiding Ninjatrader Superdom control in SuperDom Window

    Hello:

    I have seen some software that hides the superdom control in the SuperDom window and I am trying to achieve the same.

    I tried with snoop and if I set the column size of the grid to 0 and MinSize to 0 I can do it. I also saw this example AddOn to add buttons to superdom window this way

    Code:
    var sd = window as NinjaTrader.Gui.SuperDom.SuperDom;
    
    if (sd == null) { return; }
    
    ///So SuperDomWindow is the Parent and we are assiging it to a SuperDom Object.
    var xSuperDom = sd.FindFirst("SuperDOMWindow") as NinjaTrader.Gui.SuperDom.SuperDom ;
    
    if(xSuperDom==null) return;
    ///Creating SuperDomControl Object, which is the space inside the superdom.
    
    //Assiging our SuperDomControl object the AutomationID inside our xSuperDom SuperDom object. ///FindFirst finds the automation ID.
    var xSDControl =xSuperDom.FindFirst("SuperDOMControl") as NinjaTrader.Gui.SuperDom.SuperDomControl ;
    I noticed the control name is "grdLadders" but cannot find it with FindFirst I wonder what would be the proper way.

    Regards

    #2
    This is the example I was fiddling with https://ninjatraderecosystem.com/use...s-to-superdom/

    Comment


      #3
      Hello waldoalvarez,

      There isn't anything documented or supported, but it's WPF and you can pretty much alter it as you would like.

      These may give you some ideas, but use MSInspect to identify objects and remove them.
      Hello All, Moving forward this will be maintained in the help guide reference samples and no longer maintained on the forum. Creating Chart WPF (UI) Modifications from an Indicator - https://ninjatrader.com/support/help...ui)-modifi.htm (https://ninjatrader.com/support/helpGuides/nt8/creating-chart-wpf-(ui)-modifi.htm) I've
      Chelsea B.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      633 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      364 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      105 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      567 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      568 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X