作者brighte (bright)
看板Visual_Basic
标题[.NET]graphics绘图
时间Wed Jul 24 16:28:41 2013
各位好
我用VS2012 visual C# 绘图
以下是我的code
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 WindowsFormsApplication6
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
}
private void Form1_Paint(object sender, PaintEventArgs e)
{
Graphics G = e.Graphics; // 取得画布方法二
G.DrawLine(Pens.Black, 0, 0, 100, 100); //在 Form1 的画布上画直线
}
}
}
按下play之後 却没有画出线条..
这是我看书上的范例
请问 哪里出现问题了吗?
谢谢
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 111.185.90.33
1F:→ brighte:我知道为什麽了^^ 07/24 18:13
2F:→ brighte:因为我没有加上这句 07/24 18:13
3F:→ brighte:this.Paint += new System.Windows.Forms. 07/24 18:14
4F:→ brighte:PaintEventHandler(this.Form1_Paint); 07/24 18:14