(续)用c#实现的数字图象处理----正在更新中!

设计框架图如下:

//Form2.cs

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

namespace 李计刚的数字图象处理作业
{
 /// <summary>
 /// Form2 的摘要说明。
 /// </summary>
 public class Form2 : System.Windows.Forms.Form
 {
  private System.Windows.Forms.PictureBox pictureBox1;
  private System.Windows.Forms.Label label1;
  private System.Windows.Forms.Button button1;
  /// <summary>
  /// 必需的设计器变量。
  /// </summary>
  private System.ComponentModel.Container components = null;

  public Form2()
  {
   //
   // 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()
  {
   System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form2));
   this.pictureBox1 = new System.Windows.Forms.PictureBox();
   this.label1 = new System.Windows.Forms.Label();
   this.button1 = new System.Windows.Forms.Button();
   this.SuspendLayout();
   //
   // pictureBox1
   //
   this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
   this.pictureBox1.Location = new System.Drawing.Point(8, 24);
   this.pictureBox1.Name = "pictureBox1";
   this.pictureBox1.Size = new System.Drawing.Size(100, 96);
   this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
   this.pictureBox1.TabIndex = 0;
   this.pictureBox1.TabStop = false;
   //
   // label1
   //
   this.label1.Font = new System.Drawing.Font("华文中宋", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
   this.label1.ForeColor = System.Drawing.SystemColors.ActiveCaption;
   this.label1.Location = new System.Drawing.Point(120, 32);
   this.label1.Name = "label1";
   this.label1.Size = new System.Drawing.Size(256, 72);
   this.label1.TabIndex = 1;
   this.label1.Text = "本程序在vs.net 2003版本下调试运行。版权所有人:李计刚!     E-mail:lijigang1982@msn.com";
   //
   // button1
   //
   this.button1.Location = new System.Drawing.Point(176, 112);
   this.button1.Name = "button1";
   this.button1.Size = new System.Drawing.Size(128, 32);
   this.button1.TabIndex = 2;
   this.button1.Text = "确定";
   this.button1.Click += new System.EventHandler(this.button1_Click);
   //
   // Form2
   //
   this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
   this.ClientSize = new System.Drawing.Size(384, 150);
   this.Controls.Add(this.button1);
   this.Controls.Add(this.label1);
   this.Controls.Add(this.pictureBox1);
   this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
   this.Name = "Form2";
   this.Text = "关于";
   this.ResumeLayout(false);

  }
  #endregion

  private void button1_Click(object sender, System.EventArgs e)
  {
  this.Close();
  }
 }
}

//Form3.cs

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

namespace 李计刚的数字图象处理作业
{
 /// <summary>
 /// Form3 的摘要说明。
 /// </summary>
 public class Form3 : System.Windows.Forms.Form
 {
  public System.Windows.Forms.TrackBar trackBar1;
  public System.Windows.Forms.Label label1;
  public System.Windows.Forms.Label label3;
  public System.Windows.Forms.Label label2;
  /// <summary>
  /// 必需的设计器变量。
  /// </summary>
  private System.ComponentModel.Container components = null;

  public Form3()
  {
   //
   // 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()
  {
   this.trackBar1 = new System.Windows.Forms.TrackBar();
   this.label1 = new System.Windows.Forms.Label();
   this.label3 = new System.Windows.Forms.Label();
   this.label2 = new System.Windows.Forms.Label();
   ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
   this.SuspendLayout();
   //
   // trackBar1
   //
   this.trackBar1.LargeChange = 1;
   this.trackBar1.Location = new System.Drawing.Point(32, 48);
   this.trackBar1.Maximum = 150;
   this.trackBar1.Name = "trackBar1";
   this.trackBar1.Size = new System.Drawing.Size(224, 45);
   this.trackBar1.TabIndex = 0;
   this.trackBar1.Value = 20;
   this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll);
   //
   // label1
   //
   this.label1.Location = new System.Drawing.Point(32, 24);
   this.label1.Name = "label1";
   this.label1.Size = new System.Drawing.Size(32, 23);
   this.label1.TabIndex = 1;
   this.label1.Text = "0";
   //
   // label3
   //
   this.label3.Location = new System.Drawing.Point(216, 24);
   this.label3.Name = "label3";
   this.label3.Size = new System.Drawing.Size(40, 23);
   this.label3.TabIndex = 3;
   this.label3.Text = "150";
   //
   // label2
   //
   this.label2.Location = new System.Drawing.Point(80, 24);
   this.label2.Name = "label2";
   this.label2.Size = new System.Drawing.Size(104, 16);
   this.label2.TabIndex = 4;
   this.label2.Text = "设定的值为:20";
   //
   // Form3
   //
   this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
   this.ClientSize = new System.Drawing.Size(292, 110);
   this.Controls.Add(this.label2);
   this.Controls.Add(this.label3);
   this.Controls.Add(this.label1);
   this.Controls.Add(this.trackBar1);
   this.Name = "Form3";
   this.Text = "Form3";
   this.Load += new System.EventHandler(this.Form3_Load);
   ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
   this.ResumeLayout(false);

  }
  #endregion

  private void Form3_Load(object sender, System.EventArgs e)
  {
  
  }

  private void trackBar1_Scroll(object sender, System.EventArgs e)
  {
   this.label2.Text="设定的值为:"+ this.trackBar1.Value;
  }

  
 }
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值