Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Dynamically changing color of custom buttons
Collapse
X
-
Dynamically changing color of custom buttons
I have an indicator that has custom buttons. I have a function that changes the color of the buttons dynamically under certain conditions. when the condition is met the buttons dissappear from view.. I have to reload the ninjascript to get them back and no color change is observedTags: None
-
Hi Itachi, thanks for posting.
Are there any errors in the Log tab of the Control Center? You should also use a Dispatcher to access the button object e.g.
if (ChartControl != null)
{
ChartControl.Dispatcher.InvokeAsync((System.Action )(() =>
{
TargetButton.Background = Brushes.Green;
}));
}
Kind regards,
-ChrisL
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
127 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
105 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
85 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
105 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
86 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment