IPCamAppBar/IPCamAppBar/CameraView.Designer.cs

113 lines
5.2 KiB
C#

namespace IPCamAppBar
{
partial class CameraView
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CameraView));
this.ConnectingLabel = new System.Windows.Forms.Label();
this.StreamView = new System.Windows.Forms.PictureBox();
this.IssueLabel = new System.Windows.Forms.Label();
this.PausedOverlay = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.StreamView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.PausedOverlay)).BeginInit();
this.SuspendLayout();
//
// ConnectingLabel
//
this.ConnectingLabel.Dock = System.Windows.Forms.DockStyle.Fill;
this.ConnectingLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ConnectingLabel.ForeColor = System.Drawing.Color.White;
this.ConnectingLabel.Location = new System.Drawing.Point(0, 0);
this.ConnectingLabel.Name = "ConnectingLabel";
this.ConnectingLabel.Size = new System.Drawing.Size(150, 150);
this.ConnectingLabel.TabIndex = 0;
this.ConnectingLabel.Text = "Connecting...";
this.ConnectingLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// StreamView
//
this.StreamView.Dock = System.Windows.Forms.DockStyle.Fill;
this.StreamView.Location = new System.Drawing.Point(0, 0);
this.StreamView.Name = "StreamView";
this.StreamView.Size = new System.Drawing.Size(150, 150);
this.StreamView.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.StreamView.TabIndex = 1;
this.StreamView.TabStop = false;
this.StreamView.Visible = false;
//
// IssueLabel
//
this.IssueLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.IssueLabel.BackColor = System.Drawing.Color.Black;
this.IssueLabel.ForeColor = System.Drawing.Color.DarkRed;
this.IssueLabel.Location = new System.Drawing.Point(0, 0);
this.IssueLabel.Name = "IssueLabel";
this.IssueLabel.Size = new System.Drawing.Size(150, 21);
this.IssueLabel.TabIndex = 2;
this.IssueLabel.Text = "Someone set up us the bomb";
this.IssueLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.IssueLabel.Visible = false;
//
// PausedOverlay
//
this.PausedOverlay.BackColor = System.Drawing.Color.Transparent;
this.PausedOverlay.Image = ((System.Drawing.Image)(resources.GetObject("PausedOverlay.Image")));
this.PausedOverlay.Location = new System.Drawing.Point(19, 40);
this.PausedOverlay.Name = "PausedOverlay";
this.PausedOverlay.Size = new System.Drawing.Size(64, 64);
this.PausedOverlay.TabIndex = 3;
this.PausedOverlay.TabStop = false;
this.PausedOverlay.Visible = false;
//
// CameraView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Gray;
this.Controls.Add(this.PausedOverlay);
this.Controls.Add(this.IssueLabel);
this.Controls.Add(this.StreamView);
this.Controls.Add(this.ConnectingLabel);
this.Margin = new System.Windows.Forms.Padding(0);
this.Name = "CameraView";
((System.ComponentModel.ISupportInitialize)(this.StreamView)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.PausedOverlay)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label ConnectingLabel;
private System.Windows.Forms.PictureBox StreamView;
private System.Windows.Forms.Label IssueLabel;
private System.Windows.Forms.PictureBox PausedOverlay;
}
}