using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class game : Form
{
public game()
{
InitializeComponent();
}
private void game_paint(object sender, PaintEventArgs e)
{
Graphics g = e.Graphics;
Pen bluepen = new Pen(Color.Blue, 0.5F);
g.DrawLine(bluepen, 10, 10, 100, 100);
g.DrawRectangle(bluepen, 10, 10, 100, 100);
}
private void game_Load(object sender, EventArgs e)
{
}
}
}
自己添加的Paint,为什么每个窗体都有一个LOAD事件- -删也删不掉……好吧,原谅我菜菜的,谢谢各位了
------解决思路----------------------
看你的情况,好像是直接在后台加的代码。。。。
你需要先在前台,选中窗体,在右侧属性栏的事件中,找到Paint事件,然后双击事件名进入后台代码,把那个代码粘过来即可。
以上,正规的叫法是:你需要先注册这个事件!