121 lines
4.8 KiB
C#
121 lines
4.8 KiB
C#
namespace photo
|
||
{
|
||
partial class Form1
|
||
{
|
||
/// <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.richTextBox2 = new System.Windows.Forms.RichTextBox();
|
||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||
this.button1 = new System.Windows.Forms.Button();
|
||
this.button2 = new System.Windows.Forms.Button();
|
||
this.comboBox1 = new System.Windows.Forms.ComboBox();
|
||
this.videoSourcePlayer1 = new AForge.Controls.VideoSourcePlayer();
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// richTextBox2
|
||
//
|
||
this.richTextBox2.Location = new System.Drawing.Point(418, 456);
|
||
this.richTextBox2.Name = "richTextBox2";
|
||
this.richTextBox2.Size = new System.Drawing.Size(100, 96);
|
||
this.richTextBox2.TabIndex = 11;
|
||
this.richTextBox2.Text = "";
|
||
//
|
||
// pictureBox1
|
||
//
|
||
this.pictureBox1.Location = new System.Drawing.Point(22, 110);
|
||
this.pictureBox1.Name = "pictureBox1";
|
||
this.pictureBox1.Size = new System.Drawing.Size(476, 303);
|
||
this.pictureBox1.TabIndex = 12;
|
||
this.pictureBox1.TabStop = false;
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.Location = new System.Drawing.Point(294, 21);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(75, 45);
|
||
this.button1.TabIndex = 13;
|
||
this.button1.Text = "Save";
|
||
this.button1.UseVisualStyleBackColor = true;
|
||
//
|
||
// button2
|
||
//
|
||
this.button2.Location = new System.Drawing.Point(423, 21);
|
||
this.button2.Name = "button2";
|
||
this.button2.Size = new System.Drawing.Size(75, 45);
|
||
this.button2.TabIndex = 14;
|
||
this.button2.Text = "button2";
|
||
this.button2.UseVisualStyleBackColor = true;
|
||
this.button2.Click += new System.EventHandler(this.button2_Click);
|
||
//
|
||
// comboBox1
|
||
//
|
||
this.comboBox1.FormattingEnabled = true;
|
||
this.comboBox1.Location = new System.Drawing.Point(85, 33);
|
||
this.comboBox1.Name = "comboBox1";
|
||
this.comboBox1.Size = new System.Drawing.Size(121, 23);
|
||
this.comboBox1.TabIndex = 15;
|
||
//
|
||
// videoSourcePlayer1
|
||
//
|
||
this.videoSourcePlayer1.Location = new System.Drawing.Point(543, 129);
|
||
this.videoSourcePlayer1.Name = "videoSourcePlayer1";
|
||
this.videoSourcePlayer1.Size = new System.Drawing.Size(111, 126);
|
||
this.videoSourcePlayer1.TabIndex = 16;
|
||
this.videoSourcePlayer1.Text = "videoSourcePlayer1";
|
||
this.videoSourcePlayer1.VideoSource = null;
|
||
//
|
||
// Form1
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(800, 450);
|
||
this.Controls.Add(this.videoSourcePlayer1);
|
||
this.Controls.Add(this.comboBox1);
|
||
this.Controls.Add(this.button2);
|
||
this.Controls.Add(this.button1);
|
||
this.Controls.Add(this.pictureBox1);
|
||
this.Controls.Add(this.richTextBox2);
|
||
this.Name = "Form1";
|
||
this.Text = "Form1";
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.RichTextBox richTextBox2;
|
||
private System.Windows.Forms.PictureBox pictureBox1;
|
||
private System.Windows.Forms.Button button1;
|
||
private System.Windows.Forms.Button button2;
|
||
private System.Windows.Forms.ComboBox comboBox1;
|
||
private AForge.Controls.VideoSourcePlayer videoSourcePlayer1;
|
||
}
|
||
}
|
||
|