Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Remove Maximize from window

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

    Remove Maximize from window

    Hi,

    I am trying to remove the maximize option from a window shown in attachment. Where can I find the details of that or if you could mention here will be helpful.
    Attached Files

    #2
    Which window are you referring to?

    Comment


      #3
      Thanks for your reply. I am creating a new NTWindow.

      Comment


        #4
        I haven't used NTWindow but if you have loaded the Ninjatrader workspace into Visual Studio you should be able to browse the properties and methods of NTWindow and of any base classes. This might give you an idea as to what is available. The standard dot net Form class has two properties called MinimizeBox and MaximizeBox that you can set to false.

        Comment


          #5
          thanks for your reply. I am going to check it now with VS.

          Comment


            #6
            I found it, it is IsMaximizeEnabled = false;

            Comment


              #7
              Originally posted by asmmbillah View Post
              I am trying to remove the maximize option from a window shown in attachment. Where can I find the details of that or if you could mention here will be helpful.
              Code:
              yourWindow.IsMinimizeEnabled = false;
              yourWindow.IsMaximizeEnabled = false;
              yourWindow.IsCloseEnabled = false;

              -=Edge=-
              NinjaTrader Ecosystem Vendor - High Tech Trading Analysis

              Comment


                #8
                Thanks Edge for your input. Can you please tell me how to enable, Auto height for the window please?

                Comment


                  #9
                  Originally posted by asmmbillah View Post
                  Thanks Edge for your input. Can you please tell me how to enable, Auto height for the window please?
                  Code:
                  yourWindow.SizeToContent = SizeToContent.WidthAndHeight;
                  type yourWindow.

                  once you type the (.) dot intellisense should help..

                  You might also find some helpful information here:
                  Provides the ability to create, configure, show, and manage the lifetime of windows and dialog boxes.



                  Good Luck!


                  -=Edge=-
                  NinjaTrader Ecosystem Vendor - High Tech Trading Analysis

                  Comment

                  Latest Posts

                  Collapse

                  Topics Statistics Last Post
                  Started by Barry Milan, Today, 10:35 PM
                  1 response
                  6 views
                  0 likes
                  Last Post NinjaTrader_Manfred  
                  Started by WeyldFalcon, 12-10-2020, 06:48 PM
                  14 responses
                  1,427 views
                  0 likes
                  Last Post Handclap0241  
                  Started by DJ888, Yesterday, 06:09 PM
                  2 responses
                  9 views
                  0 likes
                  Last Post DJ888
                  by DJ888
                   
                  Started by jeronymite, 04-12-2024, 04:26 PM
                  3 responses
                  40 views
                  0 likes
                  Last Post jeronymite  
                  Started by bill2023, Today, 08:51 AM
                  2 responses
                  16 views
                  0 likes
                  Last Post bill2023  
                  Working...
                  X