[求助]画垂线代码
我现在需要画垂线的代码
具体就是用鼠标在窗体中拾取一条线并作出这条线一条垂线
拾取线pointselect(x,y)这个已经写完了,我现在需要画垂线的鼠标函数代码
拜托各位帮忙解决一下
void ITool.OnMouseDown(int button, int shift, int x, int y)
{
PointSelect(x ,y);
}
void ITool.OnMouseMove(int button, int shift, int x, int y)
{
}
void ITool.OnMouseUp(int button, int shift, int x, int y)
{
}