c#中如何实现点击按钮后在picturebox中绘图

点击button后,会有一条直线绘制在picturebox中,该怎么写事件呢?privatevoidbutton1_Click(objectsender,EventArg... 点击button后,会有一条直线绘制在picturebox中,该怎么写事件呢?
private void button1_Click(object sender, EventArgs e)
{
Graphics g = pictureBox1.CreateGraphics;
Pen p = new Pen(Color.Red, 2);
g.DrawLine(p, 0, 0, 100, 100);
}
这样写似乎不行呃,求大神指教
展开
 我来答
freeeeeewind
推荐于2017-09-12 · TA获得超过1万个赞
知道大有可为答主
回答量:3227
采纳率:94%
帮助的人:1325万
展开全部

需要对PictureBox的Pain事件编程

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        bool b = false;
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            b = true;
            pictureBox1.Refresh();
        }

        private void pictureBox1_Paint(object sender, PaintEventArgs e)
        {
            if (b == false) return;
            Graphics g = e.Graphics;
            Pen p = new Pen(Color.Red, 2);
            g.DrawLine(p, 0, 0, 100, 100);
        }
        
    }
}
阳光的雷咩咩
2016-01-27 · TA获得超过1.4万个赞
知道大有可为答主
回答量:2.3万
采纳率:66%
帮助的人:7712万
展开全部

看你要画什么了,简单的矩形如下:

        private void button1_Click(object sender, EventArgs e)
        {
            Graphics g = this.pictureBox1.CreateGraphics();
            g.DrawRectangle(new Pen(Color.Red), 0, 0, 100, 100);
        }
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友e4ac482
2015-11-05 · 超过18用户采纳过TA的回答
知道答主
回答量:79
采纳率:0%
帮助的人:33万
展开全部
在窗体上设置一个按钮和一个picturebox,代码里在按钮的点击事件里写绘图函数或过程
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式