namespace CameraCardDemo { partial class MainForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// 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() { System.Windows.Forms.TabPage tab1; this.cameraSelector = new System.Windows.Forms.ComboBox(); this.cameraRender = new System.Windows.Forms.PictureBox(); this.tabControl1 = new System.Windows.Forms.TabControl(); this.tab2 = new System.Windows.Forms.TabPage(); this.tab3 = new System.Windows.Forms.TabPage(); this.tab4 = new System.Windows.Forms.TabPage(); this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.panel1 = new System.Windows.Forms.Panel(); this.label1 = new System.Windows.Forms.Label(); this.comboBox1 = new System.Windows.Forms.ComboBox(); this.label2 = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.richTextBox1 = new System.Windows.Forms.RichTextBox(); this.shotBtn = new System.Windows.Forms.Button(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); tab1 = new System.Windows.Forms.TabPage(); tab1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.cameraRender)).BeginInit(); this.tabControl1.SuspendLayout(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // tab1 // tab1.Controls.Add(this.pictureBox1); tab1.Controls.Add(this.shotBtn); tab1.Controls.Add(this.richTextBox1); tab1.Controls.Add(this.panel1); tab1.Controls.Add(this.cameraSelector); tab1.Controls.Add(this.cameraRender); tab1.Location = new System.Drawing.Point(4, 22); tab1.Name = "tab1"; tab1.Padding = new System.Windows.Forms.Padding(3); tab1.Size = new System.Drawing.Size(1000, 703); tab1.TabIndex = 0; tab1.Text = "图像采集"; tab1.UseVisualStyleBackColor = true; // // cameraSelector // this.cameraSelector.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.cameraSelector.FormattingEnabled = true; this.cameraSelector.Location = new System.Drawing.Point(605, 5); this.cameraSelector.Name = "cameraSelector"; this.cameraSelector.Size = new System.Drawing.Size(392, 20); this.cameraSelector.TabIndex = 1; this.cameraSelector.SelectedIndexChanged += new System.EventHandler(this.cameraSelector_SelectedIndexChanged); // // cameraRender // this.cameraRender.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.cameraRender.BackColor = System.Drawing.Color.Black; this.cameraRender.Location = new System.Drawing.Point(605, 30); this.cameraRender.Name = "cameraRender"; this.cameraRender.Size = new System.Drawing.Size(387, 426); this.cameraRender.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.cameraRender.TabIndex = 0; this.cameraRender.TabStop = false; this.cameraRender.Paint += new System.Windows.Forms.PaintEventHandler(this.cameraRender_Paint); // // tabControl1 // this.tabControl1.Controls.Add(tab1); this.tabControl1.Controls.Add(this.tab2); this.tabControl1.Controls.Add(this.tab3); this.tabControl1.Controls.Add(this.tab4); this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.tabControl1.Location = new System.Drawing.Point(0, 0); this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; this.tabControl1.Size = new System.Drawing.Size(1008, 729); this.tabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; this.tabControl1.TabIndex = 2; // // tab2 // this.tab2.Location = new System.Drawing.Point(4, 22); this.tab2.Name = "tab2"; this.tab2.Padding = new System.Windows.Forms.Padding(3); this.tab2.Size = new System.Drawing.Size(1000, 703); this.tab2.TabIndex = 1; this.tab2.Text = "采集进度"; this.tab2.UseVisualStyleBackColor = true; // // tab3 // this.tab3.Location = new System.Drawing.Point(4, 22); this.tab3.Name = "tab3"; this.tab3.Padding = new System.Windows.Forms.Padding(3); this.tab3.Size = new System.Drawing.Size(1000, 703); this.tab3.TabIndex = 2; this.tab3.Text = "图像管理"; this.tab3.UseVisualStyleBackColor = true; // // tab4 // this.tab4.Location = new System.Drawing.Point(4, 22); this.tab4.Name = "tab4"; this.tab4.Padding = new System.Windows.Forms.Padding(3); this.tab4.Size = new System.Drawing.Size(1000, 703); this.tab4.TabIndex = 3; this.tab4.Text = "系统设置"; this.tab4.UseVisualStyleBackColor = true; // // statusStrip1 // this.statusStrip1.Location = new System.Drawing.Point(0, 707); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.Size = new System.Drawing.Size(1008, 22); this.statusStrip1.TabIndex = 3; this.statusStrip1.Text = "statusStrip1"; // // panel1 // this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.panel1.Controls.Add(this.textBox1); this.panel1.Controls.Add(this.label2); this.panel1.Controls.Add(this.comboBox1); this.panel1.Controls.Add(this.label1); this.panel1.Location = new System.Drawing.Point(7, 6); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(160, 676); this.panel1.TabIndex = 2; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(5, 19); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(41, 12); this.label1.TabIndex = 0; this.label1.Text = "班级:"; // // comboBox1 // this.comboBox1.FormattingEnabled = true; this.comboBox1.Location = new System.Drawing.Point(55, 11); this.comboBox1.Name = "comboBox1"; this.comboBox1.Size = new System.Drawing.Size(100, 20); this.comboBox1.TabIndex = 1; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(7, 54); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(41, 12); this.label2.TabIndex = 2; this.label2.Text = "姓名:"; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(55, 44); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(100, 21); this.textBox1.TabIndex = 3; // // richTextBox1 // this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.richTextBox1.Location = new System.Drawing.Point(173, 516); this.richTextBox1.Name = "richTextBox1"; this.richTextBox1.Size = new System.Drawing.Size(819, 166); this.richTextBox1.TabIndex = 3; this.richTextBox1.Text = ""; // // shotBtn // this.shotBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.shotBtn.Location = new System.Drawing.Point(764, 473); this.shotBtn.Name = "shotBtn"; this.shotBtn.Size = new System.Drawing.Size(75, 23); this.shotBtn.TabIndex = 4; this.shotBtn.Text = "拍照"; this.shotBtn.UseVisualStyleBackColor = true; this.shotBtn.Click += new System.EventHandler(this.shotBtn_Click); // // pictureBox1 // this.pictureBox1.Location = new System.Drawing.Point(251, 84); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(100, 50); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; this.pictureBox1.TabIndex = 5; this.pictureBox1.TabStop = false; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1008, 729); this.Controls.Add(this.statusStrip1); this.Controls.Add(this.tabControl1); this.Name = "MainForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "MainFrom"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); this.Load += new System.EventHandler(this.MainFrom_Load); tab1.ResumeLayout(false); tab1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.cameraRender)).EndInit(); this.tabControl1.ResumeLayout(false); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.PictureBox cameraRender; private System.Windows.Forms.ComboBox cameraSelector; private System.Windows.Forms.TabControl tabControl1; private System.Windows.Forms.TabPage tab2; private System.Windows.Forms.TabPage tab3; private System.Windows.Forms.TabPage tab4; private System.Windows.Forms.StatusStrip statusStrip1; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Label label2; private System.Windows.Forms.ComboBox comboBox1; private System.Windows.Forms.Label label1; private System.Windows.Forms.Button shotBtn; private System.Windows.Forms.RichTextBox richTextBox1; private System.Windows.Forms.PictureBox pictureBox1; } }