Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

NT File Dialog Control

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

    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.

    #2
    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.

    Comment


      #3
      Thanks, that is perfect.

      Comment


        #4
        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


          #5
          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


            #6
            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 Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            597 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            343 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            103 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            556 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            555 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X