Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
capturing mouse events?
Collapse
X
-
Hi chuckt101, you can easily capture mouse x/y coordinates by adding an event handler to your indicators underlying control.
Add something like this to your OnStartUp():
And add the method in your indicatorCode:ChartControl.MouseMove += mouseMoveHandler;
X and Y are just examples, you can do things with clicks, mouse-wheel, etc. Hope this helpsCode:private void mouseMoveHandler(object sender, MouseEventArgs e) { // do whatever with mouse coords contained in e here Print(String.Format("mouseMoveHandler X = {0} Y = {1}!", e.X, e.Y)) }
edit: if you simply want to capture clicks, you'll want to use the MouseDown event versus MouseMove. You can find a breakdown of mouse events on MSDN here http://msdn.microsoft.com/en-us/libr...mousedown.aspxLast edited by Dexter; 02-28-2011, 04:47 PM.
Comment
-
-
Thank you johne5. That revealed my mistake....needed MouseDown on the ChartPanel...makes sense (now!).
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
168 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
322 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
246 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
350 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment