histForm.Designer.cs
上传用户:c6x6r6
上传日期:2022-07-31
资源大小:515k
文件大小:2k
- namespace WindowsFormsApplication2
- {
- partial class histForm
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.close = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // close
- //
- this.close.Location = new System.Drawing.Point(924, 296);
- this.close.Name = "close";
- this.close.Size = new System.Drawing.Size(75, 23);
- this.close.TabIndex = 0;
- this.close.Text = "关闭";
- this.close.UseVisualStyleBackColor = true;
- this.close.Click += new System.EventHandler(this.button1_Click);
- //
- // histForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1011, 331);
- this.ControlBox = false;
- this.Controls.Add(this.close);
- this.Name = "histForm";
- this.Text = "直方图";
- this.Load += new System.EventHandler(this.histForm_Load);
- this.Paint += new System.Windows.Forms.PaintEventHandler(this.histForm_Paint);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Button close;
- private System.Drawing.Bitmap bmpHist;
- private int[,] countPixel;
- private int[] maxPixel;
- }
- }