源程序如下:
sing System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace Painter
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Painter : System.Windows.Forms.Form
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
bool shouldPaint = false;
private System.ComponentModel.Container components = null;
public Painter()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
//
// Painter
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(292, 266);
this.Name = "Painter";
this.Text = "Form1";
}
#endregion
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Painter());
}
private void Painter_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
shouldPaint = true;
}
private void Painter_MouseUP(object sender, System.Windows.Forms.MouseEventArgs e)
{
shouldPaint = false;
}
private void Painter_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
{
if(shouldPaint)
{
Graphics graphics = CreateGraphics();
graphics.FillEllipse(new SolidBrush(Color.BlueViolet),e.X,e.Y,4,4);
}
}
}
}
以上程序的功能是用鼠标画图,程序编译通过了,也能运行但是鼠标不能响应画图的动作
哪位帮帮忙啊,谢了!