#region Using declarations using NinjaTrader.Data; using NinjaTrader.Gui.SuperDom; using System; using System.Collections.Concurrent; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Windows; using System.Windows.Input; using System.Windows.Media; using System.Text; using System.Xml.Serialization; #endregion private TypeFace typeFace = new Typeface(fontFamily, fontStyle, fontWeight, FontStretches.Normal); FormattedText pnlText = new FormattedText(accumVol, Core.Globals.GeneralOptions.CurrentCulture, FlowDirection.LeftToRight, typeFace, SuperDom.Font.Size, Brushes.Black );
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
TypeFace missing reference
Collapse
X
-
TypeFace missing reference
I have System.Windows.Media listed as a reference but I'm getting an error saying the type or namespace name 'TypeFace' could not be found. I copied the typeface code from the superdom columns APQ code
Code:Tags: None
-
Hello habibalex,
In the first post you have:
Where you intending to have:Code:private TypeFace typeFace = new Typeface(fontFamily, fontStyle, fontWeight, FontStretches.Normal);
The capital F on TypeFace is a different type than with the lowercase f on Typeface.Code:private TypeFace typeFace = new Type[B]F[/B]ace(fontFamily, fontStyle, fontWeight, FontStretches.Normal);
Chelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
64 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
28 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
20 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
25 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
26 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment