加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
UserControlCamera.Designer.cs 6.63 KB
一键复制 编辑 原始数据 按行查看 历史
jlshiwei 提交于 2018-04-22 11:44 . jlshiwei 2018.422
namespace TabHeaderDemo
{
partial class UserControlCamera
{
/// <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 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.label1 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.camera1FpsLabel = new System.Windows.Forms.Label();
this.comboBox_camera = new System.Windows.Forms.ComboBox();
this.stopButton = new System.Windows.Forms.Button();
this.startButton = new System.Windows.Forms.Button();
this.timer = new System.Windows.Forms.Timer(this.components);
this.videoSourcePlayer1 = new AForge.Controls.VideoSourcePlayer();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.BackColor = System.Drawing.Color.White;
this.label1.Dock = System.Windows.Forms.DockStyle.Top;
this.label1.Location = new System.Drawing.Point(0, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(419, 18);
this.label1.TabIndex = 7;
this.label1.Text = "状态指示";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.videoSourcePlayer1);
this.groupBox1.Controls.Add(this.camera1FpsLabel);
this.groupBox1.Controls.Add(this.comboBox_camera);
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox1.Location = new System.Drawing.Point(0, 18);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(419, 312);
this.groupBox1.TabIndex = 8;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "摄像头1";
//
// camera1FpsLabel
//
this.camera1FpsLabel.Location = new System.Drawing.Point(282, 293);
this.camera1FpsLabel.Name = "camera1FpsLabel";
this.camera1FpsLabel.Size = new System.Drawing.Size(50, 16);
this.camera1FpsLabel.TabIndex = 4;
this.camera1FpsLabel.Text = "30 p";
this.camera1FpsLabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// comboBox_camera
//
this.comboBox_camera.Dock = System.Windows.Forms.DockStyle.Top;
this.comboBox_camera.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox_camera.FormattingEnabled = true;
this.comboBox_camera.Location = new System.Drawing.Point(3, 17);
this.comboBox_camera.Name = "comboBox_camera";
this.comboBox_camera.Size = new System.Drawing.Size(413, 20);
this.comboBox_camera.TabIndex = 3;
//
// stopButton
//
this.stopButton.Enabled = false;
this.stopButton.Location = new System.Drawing.Point(284, 336);
this.stopButton.Name = "stopButton";
this.stopButton.Size = new System.Drawing.Size(75, 21);
this.stopButton.TabIndex = 10;
this.stopButton.Text = "S&top";
this.stopButton.UseVisualStyleBackColor = true;
this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
//
// startButton
//
this.startButton.Location = new System.Drawing.Point(60, 336);
this.startButton.Name = "startButton";
this.startButton.Size = new System.Drawing.Size(75, 21);
this.startButton.TabIndex = 9;
this.startButton.Text = "&Start";
this.startButton.UseVisualStyleBackColor = true;
this.startButton.Click += new System.EventHandler(this.startButton_Click);
//
// timer
//
this.timer.Interval = 1000;
this.timer.Tick += new System.EventHandler(this.timer_Tick);
//
// videoSourcePlayer1
//
this.videoSourcePlayer1.BackColor = System.Drawing.SystemColors.ControlDark;
this.videoSourcePlayer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.videoSourcePlayer1.ForeColor = System.Drawing.Color.White;
this.videoSourcePlayer1.Location = new System.Drawing.Point(3, 37);
this.videoSourcePlayer1.Name = "videoSourcePlayer1";
this.videoSourcePlayer1.Size = new System.Drawing.Size(413, 272);
this.videoSourcePlayer1.TabIndex = 7;
this.videoSourcePlayer1.VideoSource = null;
//
// UserControlCamera
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.stopButton);
this.Controls.Add(this.startButton);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.label1);
this.Name = "UserControlCamera";
this.Size = new System.Drawing.Size(419, 480);
this.Load += new System.EventHandler(this.UserControlCamera_Load);
this.groupBox1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label camera1FpsLabel;
private System.Windows.Forms.ComboBox comboBox_camera;
private System.Windows.Forms.Button stopButton;
private System.Windows.Forms.Button startButton;
private System.Windows.Forms.Timer timer;
private AForge.Controls.VideoSourcePlayer videoSourcePlayer1;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化