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 CarlTrading, 03-31-2026, 09:41 PM
      1 response
      43 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      20 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      29 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      46 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      38 views
      0 likes
      Last Post CarlTrading  
      Working...
      X