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 Mindset, 04-21-2026, 06:46 AM
            0 responses
            94 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by M4ndoo, 04-20-2026, 05:21 PM
            0 responses
            140 views
            0 likes
            Last Post M4ndoo
            by M4ndoo
             
            Started by M4ndoo, 04-19-2026, 05:54 PM
            0 responses
            68 views
            0 likes
            Last Post M4ndoo
            by M4ndoo
             
            Started by cmoran13, 04-16-2026, 01:02 PM
            0 responses
            125 views
            0 likes
            Last Post cmoran13  
            Started by PaulMohn, 04-10-2026, 11:11 AM
            0 responses
            74 views
            0 likes
            Last Post PaulMohn  
            Working...
            X