V2
This commit is contained in:
179
StreamViewer.Designer.cs
generated
Normal file
179
StreamViewer.Designer.cs
generated
Normal file
@@ -0,0 +1,179 @@
|
||||
using LibVLCSharp.Forms.Shared;
|
||||
|
||||
namespace robospot_camera_finder
|
||||
{
|
||||
partial class StreamViewer
|
||||
{
|
||||
/// <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 Windows Form 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()
|
||||
{
|
||||
components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StreamViewer));
|
||||
videoView = new LibVLCSharp.WinForms.VideoView();
|
||||
tbZoom = new TrackBar();
|
||||
timerUpdateZoom = new System.Windows.Forms.Timer(components);
|
||||
btnZoomMin = new Button();
|
||||
btnZoomMax = new Button();
|
||||
tbRtspLink = new TextBox();
|
||||
lblRtspLink = new Label();
|
||||
cbTestZoom = new CheckBox();
|
||||
timerZoomTestSeq = new System.Windows.Forms.Timer(components);
|
||||
((System.ComponentModel.ISupportInitialize)videoView).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)tbZoom).BeginInit();
|
||||
SuspendLayout();
|
||||
//
|
||||
// videoView
|
||||
//
|
||||
videoView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
||||
videoView.BackColor = Color.Black;
|
||||
videoView.Location = new Point(9, 8);
|
||||
videoView.MediaPlayer = null;
|
||||
videoView.Name = "videoView";
|
||||
videoView.Size = new Size(724, 478);
|
||||
videoView.TabIndex = 0;
|
||||
videoView.TabStop = false;
|
||||
videoView.Text = "videoView";
|
||||
//
|
||||
// tbZoom
|
||||
//
|
||||
tbZoom.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Right;
|
||||
tbZoom.LargeChange = 20;
|
||||
tbZoom.Location = new Point(739, 35);
|
||||
tbZoom.Maximum = 9999;
|
||||
tbZoom.Name = "tbZoom";
|
||||
tbZoom.Orientation = Orientation.Vertical;
|
||||
tbZoom.Size = new Size(45, 426);
|
||||
tbZoom.SmallChange = 10;
|
||||
tbZoom.TabIndex = 1;
|
||||
tbZoom.TickFrequency = 300;
|
||||
tbZoom.TickStyle = TickStyle.TopLeft;
|
||||
tbZoom.Value = 10;
|
||||
tbZoom.KeyUp += tbZoom_KeyUp;
|
||||
tbZoom.MouseUp += tbZoom_MouseUp;
|
||||
//
|
||||
// timerUpdateZoom
|
||||
//
|
||||
timerUpdateZoom.Enabled = true;
|
||||
timerUpdateZoom.Interval = 10000;
|
||||
timerUpdateZoom.Tick += timerUpdateZoom_Tick;
|
||||
//
|
||||
// btnZoomMin
|
||||
//
|
||||
btnZoomMin.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||||
btnZoomMin.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
||||
btnZoomMin.Location = new Point(739, 467);
|
||||
btnZoomMin.Name = "btnZoomMin";
|
||||
btnZoomMin.Size = new Size(42, 23);
|
||||
btnZoomMin.TabIndex = 2;
|
||||
btnZoomMin.Text = "1x";
|
||||
btnZoomMin.UseVisualStyleBackColor = true;
|
||||
btnZoomMin.Click += btnZoomMin_Click;
|
||||
//
|
||||
// btnZoomMax
|
||||
//
|
||||
btnZoomMax.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
||||
btnZoomMax.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
||||
btnZoomMax.Location = new Point(739, 6);
|
||||
btnZoomMax.Name = "btnZoomMax";
|
||||
btnZoomMax.Size = new Size(42, 23);
|
||||
btnZoomMax.TabIndex = 3;
|
||||
btnZoomMax.Text = "32x";
|
||||
btnZoomMax.UseVisualStyleBackColor = true;
|
||||
btnZoomMax.Click += btnZoomMax_Click;
|
||||
//
|
||||
// tbRtspLink
|
||||
//
|
||||
tbRtspLink.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
||||
tbRtspLink.Location = new Point(75, 492);
|
||||
tbRtspLink.Name = "tbRtspLink";
|
||||
tbRtspLink.ReadOnly = true;
|
||||
tbRtspLink.Size = new Size(559, 23);
|
||||
tbRtspLink.TabIndex = 8;
|
||||
//
|
||||
// lblRtspLink
|
||||
//
|
||||
lblRtspLink.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
||||
lblRtspLink.AutoSize = true;
|
||||
lblRtspLink.Location = new Point(12, 495);
|
||||
lblRtspLink.Name = "lblRtspLink";
|
||||
lblRtspLink.Size = new Size(57, 15);
|
||||
lblRtspLink.TabIndex = 7;
|
||||
lblRtspLink.Text = "RTSP Link";
|
||||
//
|
||||
// cbTestZoom
|
||||
//
|
||||
cbTestZoom.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||||
cbTestZoom.AutoSize = true;
|
||||
cbTestZoom.Location = new Point(640, 493);
|
||||
cbTestZoom.Name = "cbTestZoom";
|
||||
cbTestZoom.Size = new Size(144, 19);
|
||||
cbTestZoom.TabIndex = 9;
|
||||
cbTestZoom.Text = "Automated Zoom Test";
|
||||
cbTestZoom.UseVisualStyleBackColor = true;
|
||||
cbTestZoom.CheckedChanged += cbTestZoom_CheckedChanged;
|
||||
//
|
||||
// timerZoomTestSeq
|
||||
//
|
||||
timerZoomTestSeq.Interval = 6000;
|
||||
timerZoomTestSeq.Tick += timerZoomTestSeq_Tick;
|
||||
//
|
||||
// StreamViewer
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(801, 514);
|
||||
Controls.Add(cbTestZoom);
|
||||
Controls.Add(tbRtspLink);
|
||||
Controls.Add(lblRtspLink);
|
||||
Controls.Add(videoView);
|
||||
Controls.Add(btnZoomMax);
|
||||
Controls.Add(tbZoom);
|
||||
Controls.Add(btnZoomMin);
|
||||
Icon = (Icon)resources.GetObject("$this.Icon");
|
||||
Margin = new Padding(4, 3, 4, 3);
|
||||
MinimumSize = new Size(817, 546);
|
||||
Name = "StreamViewer";
|
||||
Text = "Camera";
|
||||
FormClosed += StreamViewer_FormClosed;
|
||||
((System.ComponentModel.ISupportInitialize)videoView).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)tbZoom).EndInit();
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private LibVLCSharp.WinForms.VideoView videoView;
|
||||
private TrackBar tbZoom;
|
||||
private System.Windows.Forms.Timer timerUpdateZoom;
|
||||
private Button btnZoomMin;
|
||||
private Button btnZoomMax;
|
||||
private TextBox tbRtspLink;
|
||||
private Label lblRtspLink;
|
||||
private CheckBox cbTestZoom;
|
||||
private System.Windows.Forms.Timer timerZoomTestSeq;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user