c#中实现画笔随鼠标左键按下后移动

c#中实现画笔随鼠标左键按下后移动... c#中实现画笔随鼠标左键按下后移动 展开
 我来答
mxpc5396971
2017-05-24 · TA获得超过181个赞
知道小有建树答主
回答量:282
采纳率:50%
帮助的人:116万
展开全部
public partial class MainForm : Form
{
    Graphics g;
    Timer timer;
    Point pos, pos2;
    bool isMouseUp = true;
    int interval;
    
    public MainForm()
    {
    InitializeComponent();
    }
    void MainFormLoad(object sender, EventArgs e)
    {
        this.Width = 800;
        this.Height = 600;
        timer = new Timer();
        timer.Interval = 2;
        timer.Tick += new EventHandler(timer_Tick);
        timer.Enabled = true;
        g = this.CreateGraphics();
    }
    void timer_Tick(object sender, EventArgs e)
    {
        pos = PointToClient(MousePosition);
        if(!isMouseUp)
        {
            interval++;
            if(interval > 1)
            {
                g.DrawLine(new Pen(Color.Red), pos.X, pos.Y, pos2.X, pos2.Y);
                pos2 = pos;
                interval = 0;
            }
        }
       }
    void MainFormMouseDown(object sender, MouseEventArgs e)
    {
        pos2 = pos;
        isMouseUp = false;
    }
    void MainFormMouseUp(object sender, MouseEventArgs e)
    {
        isMouseUp = true;
    }
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式