Created
July 8, 2012 12:15
-
-
Save ogonbat/3070678 to your computer and use it in GitHub Desktop.
BaseForm.Designer.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace CFaceRecon | |
{ | |
partial class BaseForm | |
{ | |
/// | |
/// Required designer variable. | |
/// | |
/// Clean up any resources being used. | |
/// | |
private System.ComponentModel.IContainer components = null; | |
/// | |
///true if managed resources should be disposed; otherwise, false. | |
protected override void Dispose(bool disposing) | |
{ | |
if (disposing && (components != null)) | |
{ | |
components.Dispose(); | |
} | |
base.Dispose(disposing); | |
} | |
#region Windows Form Designer generated code | |
/// | |
/// Required method for Designer support - do not modify | |
/// the contents of this method with the code editor. | |
/// | |
private void InitializeComponent() | |
{ | |
this.components = new System.ComponentModel.Container(); | |
this.button1 = new System.Windows.Forms.Button(); | |
this.panelImage = new System.Windows.Forms.Panel(); | |
this.panelImage.SuspendLayout(); | |
this.SuspendLayout(); | |
// | |
// button1 | |
// | |
this.button1.Location = new System.Drawing.Point(12, 12); | |
this.button1.Name = "button1"; | |
this.button1.Size = new System.Drawing.Size(101, 23); | |
this.button1.TabIndex = 0; | |
this.button1.Text = "Capture Video"; | |
this.button1.UseVisualStyleBackColor = true; | |
// | |
// panelImage | |
// | |
this.panelImage.Location = new System.Drawing.Point(0, 42); | |
this.panelImage.Name = "panelImage"; | |
this.panelImage.Size = new System.Drawing.Size(466, 359); | |
this.panelImage.TabIndex = 1; | |
// | |
// BaseForm | |
// | |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); | |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
this.ClientSize = new System.Drawing.Size(466, 413); | |
this.Controls.Add(this.panelImage); | |
this.Controls.Add(this.button1); | |
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; | |
this.Name = "BaseForm"; | |
this.Text = "CFaceRecon"; | |
this.panelImage.ResumeLayout(false); | |
this.ResumeLayout(false); | |
} | |
#endregion | |
private System.Windows.Forms.Button button1; | |
private System.Windows.Forms.Panel panelImage; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment