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
No announcement yet.
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?type yourWindow.Code:yourWindow.SizeToContent = SizeToContent.WidthAndHeight;
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!
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
581 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
338 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment