I am saving and loading AddOn template files, and have been using the Win32.OpenFileDialog, which works fine, but would like to use the NT dialog which is more compact and matches the app style.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
NT File Dialog Control
Collapse
X
-
NT File Dialog Control
Is it possible to use the NT File Dialog?
I am saving and loading AddOn template files, and have been using the Win32.OpenFileDialog, which works fine, but would like to use the NT dialog which is more compact and matches the app style.
Tags: None
-
Hello aslane,
You could use the following to browse for files or create a path to save a file:
Code:NinjaTrader.Gui.Tools.LoadingDialog.LoadingDialog loadingDialog = new NinjaTrader.Gui.Tools.LoadingDialog.LoadingDialog() { Owner = ChartControl.Parent as Window, FileFilter = "xml Files (*.xml)|*.xml)", Caption = "MyPicker", ActionButtonText = "Select File", Directory = NinjaTrader.Core.Globals.UserDataDir, IsFullBrowsingAllowed = true, FileAction = FileAction.Save //or Open }; bool? result = loadingDialog.ShowDialog(); Print(loadingDialog.FileName);
I look forward to being of further assistance.
-
This is working well, but have a question. When the file is selected, Ninja is playing a sound when the dialog is closed. I think it is working correctly, as there are no logs or messages. Is there any way to disable that sound? Looked thru properties, but did not see anything obvious. Not a big deal, just a nicety.
Comment
-
Hello aslane,
Thank you for the reply.
I looked through the properties here as well however I don't see anything specifically that would be used to toggle that. I also don't see any errors here to better understand why that may be playing a sound. Unfortunately this is not documented so I don't have much more information on this control that I could provide.
I look forward to being of further assistance.
Comment
-
The way this is currently configured a folder cannot be selected, only files
To create a folder picker:
- Comment out the FileFilter line
- Change FileAction to FileAction.Open
- Add the following two lines
Code:IsFolderSelectOnly=true, IsFolderSelectEnabled=true,
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
43 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
21 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
30 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
50 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
40 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment