Unfortunately, adding a System.Windows.Controls.TextBox to a chart is not officially supported by NinjaTrader. This would require undocumented and unsupported code to acheive.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
NumericTextBox Not Accepting Input
Collapse
X
-
Hi colleagues.
Here is the reason and the solution of the issue, described in the header of current thread:
Test_NumBox = new NumericTextBox ()
{Width = 50,
ValueType = typeof (double),
};
You should just specify the type.
Comment
-
Hello fx.practic,
Thank you for your recommendation. Unfortunately this does not resolve the problem of "NumericTextBox Not Accepting Input" within the NTWindow environment.
Using the xaml listing from Ninjascript reference and addition of your code shown below, the NumericTextBox only shows a cursor and still would not accept any character from the keyboard. It is almost like the characters from the keyboard were intercepted by another process and not reaching the NumericTextBox.
Do you have a sample NTwindow addon (or code snippets) with a NumericTextBox that is functional?
<Grid>
<!-- Define a NumericTextBox -->
<t:NumericTextBox x:Name="daysBackSelector" Text ="5" ValueType="{x:Type system:Int32}" Width="50" Grid.Column="2">
<!-- Set the margins for the box -->
<t:NumericTextBox.Margin>
<Thickness Left="{StaticResource MarginButtonLeft}" Top="{StaticResource PaddingColumn}" Right="{StaticResource MarginBase}"/>
</t:NumericTextBox.Margin>
</t:NumericTextBox>
</Grid>
private NumericTextBox daysBack = new NumericTextBox ()
{
Width = 50,
ValueType = typeof (double),
};
private DependencyObject LoadXAML()
{
// Find days back selector
daysBack = LogicalTreeHelper.FindLogicalNode(pag eContent, "daysBackSelector") as NumericTextBox;
}
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
65 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
40 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
199 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
366 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
283 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment