Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    JesseNinjaTrader Customer Service

    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.
          JesseNinjaTrader Customer Service

          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 sidlercom80, 10-28-2023, 08:49 AM
            166 responses
            2,234 views
            0 likes
            Last Post sidlercom80  
            Started by thread, Yesterday, 11:58 PM
            0 responses
            1 view
            0 likes
            Last Post thread
            by thread
             
            Started by jclose, Yesterday, 09:37 PM
            0 responses
            6 views
            0 likes
            Last Post jclose
            by jclose
             
            Started by WeyldFalcon, 08-07-2020, 06:13 AM
            10 responses
            1,414 views
            0 likes
            Last Post Traderontheroad  
            Started by firefoxforum12, Yesterday, 08:53 PM
            0 responses
            11 views
            0 likes
            Last Post firefoxforum12  
            Working...
            X