• 大小: 2.94MB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-09-10
  • 语言: C#
  • 标签: C#  Winfor  画板  GDI+  

资源简介

C#写的GDI+画板,支持移动画出的图形,同时支持画直线曲线椭圆矩形橡皮擦改变颜色等功能

资源截图

代码片段和文件信息

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace GraphicalCS
{
/// 
/// About 的摘要说明。
/// 

public class About : System.Windows.Forms.Form
{
private System.Windows.Forms.Label NAME;
private System.Windows.Forms.Label CopyRight;
private System.Windows.Forms.linkLabel EMail;
private System.Windows.Forms.Label lblEmail;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Label Athur;
private System.Windows.Forms.PictureBox pictureBox;
/// 
/// 必需的设计器变量。
/// 

private System.ComponentModel.Container components = null;

public About()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();

//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}

/// 
/// 清理所有正在使用的资源。
/// 

protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

#region Windows 窗体设计器生成的代码
/// 
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// 

private void InitializeComponent()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(About));
this.NAME = new System.Windows.Forms.Label();
this.CopyRight = new System.Windows.Forms.Label();
this.EMail = new System.Windows.Forms.linkLabel();
this.lblEmail = new System.Windows.Forms.Label();
this.btnOK = new System.Windows.Forms.Button();
this.Athur = new System.Windows.Forms.Label();
this.pictureBox = new System.Windows.Forms.PictureBox();
this.SuspendLayout();
// 
// NAME
// 
this.NAME.Location = new System.Drawing.Point(88 24);
this.NAME.Name = “NAME“;
this.NAME.Size = new System.Drawing.Size(136 16);
this.NAME.TabIndex = 0;
this.NAME.Text = “myPGS v1.0“;
// 
// CopyRight
// 
this.CopyRight.Location = new System.Drawing.Point(88 48);
this.CopyRight.Name = “CopyRight“;
this.CopyRight.Size = new System.Drawing.Size(160 16);
this.CopyRight.TabIndex = 1;
this.CopyRight.Text = “Copyright (C) 2004 PCH“;
// 
// EMail
// 
this.EMail.Location = new System.Drawing.Point(80 104);
this.EMail.Name = “EMail“;
this.EMail.Size = new System.Drawing.Size(144 23);
this.EMail.TabIndex = 2;
this.EMail.TabStop = true;
this.EMail.Text = “tcpch@sohu.com“;
this.EMail.linkClicked += new System.Windows.Forms.linkLabellinkClickedEventHandler(this.EMail_linkClicked);
// 
// lblEmail
// 
this.lblEmail.Location = new System.Drawing.Point(32 104);
this.lblEmail.Name = “lblEmail“;
this.lblEmail.Size = new System.Drawing.Size(48 23);
this.lblEmail.TabIndex = 3;
this.lblEmail.Text = “E-Mail:“;
// 
// btnOK
// 
this.btnOK.Locatio

评论

共有 条评论