Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

The type or namespace name 'Grid' could not be found

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

    The type or namespace name 'Grid' could not be found

    I try to add custom DrawingTool and try to create icon for that. I found out an example on the page https://ninjatrader.com/support/help...stom_icons.htm but when I add this example to my code I get an error:

    The type or namespace name 'Grid' could not be found (are you missing a using directive or an assembly reference?)

    What using should I add or what should I include to fix this error about Grid?

    #2
    Hello handlar,

    Thank you for the post.

    Did you copy the entire sample including the using statements listed? Grid would be in namespace System.Windows.Controls: Do you currently have this using statement in your script?

    Alternatively it would generally be more suggested to just use the full name for the type being used or :

    Code:
    System.Windows.Controls.Grid
    wherever "Grid" has been used.

    Code:
    System.Windows.Controls.Grid myCanvas = new System.Windows.Controls.Grid { Height = 16, Width = 16 };
    I look forward to being of further assistance.

    Comment


      #3
      I didn't find System.Windows.Controls.Grid in using section on the example's page here http://prntscr.com/lkjq64
      Thank you for answer. It works for me!

      P.S.
      You have 2 mistakes on this example page:
      1. You need add using System.Windows.Controls; // it needs for custom Icon for Drawing Tool, for example
      2. Here http://prntscr.com/lkjruv you should use myCanvas.Children.Add(myPath) instead of myCanvas.Children.Add(p)

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      599 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      345 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
      558 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      558 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X