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.
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!
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
NinjaTrader
Remove Maximize from window
Collapse
X
-
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.Tags: None
-
-
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
-
-
-
Originally posted by asmmbillah View PostI 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;
Comment
-
Thanks Edge for your input. Can you please tell me how to enable, Auto height for the window please?
Comment
-
Originally posted by asmmbillah View PostThanks Edge for your input. Can you please tell me how to enable, Auto height for the window please?Code:yourWindow.SizeToContent = SizeToContent.WidthAndHeight;
once you type the (.) dot intellisense should help..
You might also find some helpful information here:
https://docs.microsoft.com/en-us/dot...ew=netcore-3.1
Good Luck!
Comment
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by trend26, Today, 07:31 AM
|
2 responses
71 views
0 likes
|
Last Post
![]()
by trend26
Today, 06:08 PM
|
||
Started by chadnash, Today, 05:52 PM
|
1 response
2 views
0 likes
|
Last Post
![]()
by chadnash
Today, 05:54 PM
|
||
Started by SheriDi, 03-27-2023, 12:12 PM
|
9 responses
93 views
0 likes
|
Last Post
![]()
by SheriDi
Today, 05:38 PM
|
||
Started by PrQuantumH, Today, 05:33 PM
|
0 responses
7 views
0 likes
|
Last Post
![]()
by PrQuantumH
Today, 05:33 PM
|
||
Started by aligator, 03-06-2023, 09:38 AM
|
23 responses
491 views
0 likes
|
Last Post
![]()
by aligator
Today, 05:30 PM
|
Comment