Jump to content
Software FX Community

newbie Question


User (Legacy)

Recommended Posts

Hi, I have just put together my first ChartFX Lite for .NET application

together.

I am having problems with mouse messages. First MouseDown message only

responds to right mouse clicks and second MouseMove message is only fired

once or twice when I move my mouse over the chart. I need it to fire

everytime my mouse moves to a new x,y location.

What is wrong here?

//hardly ever fires????

private void stressChart_MouseMove(object sender,

System.Windows.Forms.MouseEventArgs e)

{

System.Diagnostics.Trace.WriteLine("Mouse X:" + e.X + ", Y:"+ e.Y);

}

I am using VS.NET 2003 and coding in C#.

OS WinXP

Link to comment
Share on other sites

Hi, I have just put together my first ChartFX Lite for .NET application

together.

I am having problems with mouse messages. First MouseDown message only

responds to right mouse clicks and second MouseMove message is only fired

once or twice when I move my mouse over the chart. I need it to fire

everytime my mouse moves to a new x,y location.

What is wrong here?

//hardly ever fires????

private void stressChart_MouseMove(object sender,

System.Windows.Forms.MouseEventArgs e)

{

System.Diagnostics.Trace.WriteLine("Mouse X:" + e.X + ", Y:"+ e.Y);

}

I am using VS.NET 2003 and coding in C#.

OS WinXP

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...