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?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 bjgjkhjuhgtybg, Today, 04:38 AM
|
0 responses
2 views
0 likes
|
Last Post
![]() |
||
Started by varun12343, Today, 03:09 AM
|
1 response
8 views
0 likes
|
Last Post
|
||
Started by Lance El Camino, Yesterday, 04:14 PM
|
2 responses
24 views
0 likes
|
Last Post
![]()
by NT-Roland
Today, 02:40 AM
|
||
Started by MatthewLesko, Yesterday, 11:13 PM
|
1 response
14 views
0 likes
|
Last Post
![]()
by NT-Roland
Today, 02:23 AM
|
||
Started by kevinenergy, Today, 01:44 AM
|
0 responses
7 views
0 likes
|
Last Post
![]()
by kevinenergy
Today, 01:44 AM
|
Comment