C# windows 表单,线条不会绘制! canvas 未定义
C# windows form, Line wont Draw! canvas is not defined
在第 27 行定义 'canvas' 需要什么?我到处都看过,但它只给出了为什么一个对象可能没有被定义的原因,而不是为什么特定对象 canvas 没有被定义。有人可以告诉我我缺少什么吗?
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void canvas_Paint(object sender, PaintEventArgs e)
{
Graphics gObject = canvas.CreateGraphics();
Brush red = new SolidBrush(Color.Red);
Pen redPen = new Pen(red, 8);
gObject.DrawLine(redPen, 10, 10, 35, 500);
}
}
}
那canvas
一定是窗体中的一个控件。您必须在设计器中添加它并为其指定 canvas
名称。哪一种?嗯……我会说使用 PictureBox。
您还需要从属性面板(事件选项卡)将 link 事件 Paint
设置为 canvas_Paint
。是的,e.Graphics
优于使用 CreateGraphics
。
你从哪里得到的代码?
在第 27 行定义 'canvas' 需要什么?我到处都看过,但它只给出了为什么一个对象可能没有被定义的原因,而不是为什么特定对象 canvas 没有被定义。有人可以告诉我我缺少什么吗?
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void canvas_Paint(object sender, PaintEventArgs e)
{
Graphics gObject = canvas.CreateGraphics();
Brush red = new SolidBrush(Color.Red);
Pen redPen = new Pen(red, 8);
gObject.DrawLine(redPen, 10, 10, 35, 500);
}
}
}
那canvas
一定是窗体中的一个控件。您必须在设计器中添加它并为其指定 canvas
名称。哪一种?嗯……我会说使用 PictureBox。
您还需要从属性面板(事件选项卡)将 link 事件 Paint
设置为 canvas_Paint
。是的,e.Graphics
优于使用 CreateGraphics
。
你从哪里得到的代码?