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 DannyP96, 05-18-2026, 02:38 PM
      1 response
      89 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      143 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      83 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      257 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      334 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X