96 lines
4.2 KiB
C#
96 lines
4.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()
|
|||
|
{
|
|||
|
this.ConnectingLabel = new System.Windows.Forms.Label();
|
|||
|
this.StreamView = new System.Windows.Forms.PictureBox();
|
|||
|
this.NoDataLabel = new System.Windows.Forms.Label();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.StreamView)).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;
|
|||
|
//
|
|||
|
// NoDataLabel
|
|||
|
//
|
|||
|
this.NoDataLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.NoDataLabel.BackColor = System.Drawing.Color.Black;
|
|||
|
this.NoDataLabel.ForeColor = System.Drawing.Color.DarkRed;
|
|||
|
this.NoDataLabel.Location = new System.Drawing.Point(0, 129);
|
|||
|
this.NoDataLabel.Name = "NoDataLabel";
|
|||
|
this.NoDataLabel.Size = new System.Drawing.Size(150, 21);
|
|||
|
this.NoDataLabel.TabIndex = 2;
|
|||
|
this.NoDataLabel.Text = "No data for x seconds";
|
|||
|
this.NoDataLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|||
|
this.NoDataLabel.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.NoDataLabel);
|
|||
|
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();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Label ConnectingLabel;
|
|||
|
private System.Windows.Forms.PictureBox StreamView;
|
|||
|
private System.Windows.Forms.Label NoDataLabel;
|
|||
|
}
|
|||
|
}
|