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 SalmaTrader, 07-07-2026, 10:26 PM
      0 responses
      54 views
      0 likes
      Last Post SalmaTrader  
      Started by CarlTrading, 07-05-2026, 01:16 PM
      0 responses
      25 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 06-17-2026, 10:32 AM
      0 responses
      17 views
      0 likes
      Last Post CaptainJack  
      Started by kinfxhk, 06-17-2026, 04:15 AM
      0 responses
      23 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 06-17-2026, 04:06 AM
      0 responses
      24 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X