zedgraph控件怎么取得鼠标位置的坐标值
我想取得zedgraph控件上任意鼠标位置的坐标值,IsShowCursorValues可以显示鼠标位置的值但是不能提取赋值给其他的变量。用PointValueEvent...
我想取得zedgraph控件上任意鼠标位置的坐标值,IsShowCursorValues可以显示鼠标位置的值但是不能提取赋值给其他的变量。用PointValueEvent这个事件又只能得到已经画出的点的坐标,而我想得到任意位置的坐标。
展开
2个回答
展开全部
private void zedGraph1_MouseClick(object sender, MouseEventArgs e)
{
PointF mousePt = new PointF(e.X, e.Y);
GraphPane pane = ((ZedGraphControl)sender).MasterPane.FindChartRect(mousePt);
if (pane != null)
{
double x, y;
pane.ReverseTransform(mousePt, out x, out y);
MessageBox.Show(x+""+y);
}
}
{
PointF mousePt = new PointF(e.X, e.Y);
GraphPane pane = ((ZedGraphControl)sender).MasterPane.FindChartRect(mousePt);
if (pane != null)
{
double x, y;
pane.ReverseTransform(mousePt, out x, out y);
MessageBox.Show(x+""+y);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询