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

TextBlock in Grid

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

    TextBlock in Grid

    In the grid example there is a TextBlock, but it does not compile for me and I want ti know if I am missing a using statement. Otherwise, how can I add text to a Grid cell?

    #2
    Hi kenz987, thanks for your post.

    Could you send me the link to the example your using?
    Chris L.NinjaTrader Customer Service

    Comment


      #3

      Other Uses for an AddOn
      //Create a sample text block and add it to the Top/Bottom Panel Grid.
      TextBlockTextBlock=newTextBlock();
      TextBlock.Text=PanelDirection.ToString()+" Panel ("+PanelLocation.ToString()+") Sample Text Block";
      TextBlock.Foreground=Brushes.Red;
      TextBlock.SetValue(Grid.RowProperty,0);
      Panel.Children.Add(TextBlock);
      I found the missing using,
      but I still have an error in the placing of the text in a cell,
      using example code from LONGSHORTButtons
      trying to add a row for comments
      Thanks

      Comment


        #4
        Hi kenz987, thanks for your reply.

        Thanks for sending the example you are looking at. Could you please let me know the error your getting when adding the text?
        Chris L.NinjaTrader Customer Service

        Comment


          #5

          private TextBlock myText;
          Print("build the txt"); // it is printing this
          try
          {
          myText.Text = "test comments here";
          }
          catch
          {
          Print("err in bld txt"); // it is printing this
          }
          This looks simple enough, is it read-only or something?
          Thanks

          Comment


            #6
            Hi kenz987, thanks for your patience. I am asking our colleague how to add this programmatically. I'll reply here with a sample shortly.
            Chris L.NinjaTrader Customer Service

            Comment


              #7
              Hi kenz987,

              The TextBlock would not be able to change after the page content is set and loaded. It would be best to use a switch statement to set the text before it is added to the window, or use a TextBox if you need to edit the text. I also attached a sample that demonstrates how to implement Model-View Model-View pattern in an Addon.

              Please let me know if I can assist any further.
              Attached Files
              Chris L.NinjaTrader Customer Service

              Comment


                #8
                Thanks Chris, Too bad nothing is ever simple anymore. So maybe I will just use a draw object TextBox and be done with it.

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by fx.practic, 10-15-2013, 12:53 AM
                5 responses
                5,404 views
                0 likes
                Last Post Bidder
                by Bidder
                 
                Started by Shai Samuel, 07-02-2022, 02:46 PM
                4 responses
                95 views
                0 likes
                Last Post Bidder
                by Bidder
                 
                Started by DJ888, Yesterday, 10:57 PM
                0 responses
                8 views
                0 likes
                Last Post DJ888
                by DJ888
                 
                Started by MacDad, 02-25-2024, 11:48 PM
                7 responses
                159 views
                0 likes
                Last Post loganjarosz123  
                Started by Belfortbucks, Yesterday, 09:29 PM
                0 responses
                8 views
                0 likes
                Last Post Belfortbucks  
                Working...
                X