ShareX/ShareX.ScreenCaptureLib/Forms/ScrollingCaptureForm.Designer.cs

213 lines
No EOL
10 KiB
C#

namespace ShareX.ScreenCaptureLib
{
partial class ScrollingCaptureForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
#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()
{
this.components = new System.ComponentModel.Container();
this.btnSelectHandle = new System.Windows.Forms.Button();
this.lblControlText = new System.Windows.Forms.Label();
this.btnCapture = new System.Windows.Forms.Button();
this.captureTimer = new System.Windows.Forms.Timer(this.components);
this.nudScrollDelay = new System.Windows.Forms.NumericUpDown();
this.nudMaximumScrollCount = new System.Windows.Forms.NumericUpDown();
this.lblScrollDelay = new System.Windows.Forms.Label();
this.lblMaximumScrollCount = new System.Windows.Forms.Label();
this.tcScrollingCapture = new System.Windows.Forms.TabControl();
this.tpCapture = new System.Windows.Forms.TabPage();
this.tpOutput = new System.Windows.Forms.TabPage();
this.pbOutput = new System.Windows.Forms.PictureBox();
this.pOutput = new System.Windows.Forms.Panel();
((System.ComponentModel.ISupportInitialize)(this.nudScrollDelay)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nudMaximumScrollCount)).BeginInit();
this.tcScrollingCapture.SuspendLayout();
this.tpCapture.SuspendLayout();
this.tpOutput.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pbOutput)).BeginInit();
this.pOutput.SuspendLayout();
this.SuspendLayout();
//
// btnSelectHandle
//
this.btnSelectHandle.Location = new System.Drawing.Point(12, 10);
this.btnSelectHandle.Name = "btnSelectHandle";
this.btnSelectHandle.Size = new System.Drawing.Size(304, 23);
this.btnSelectHandle.TabIndex = 0;
this.btnSelectHandle.Text = "Select window or control to scroll";
this.btnSelectHandle.UseVisualStyleBackColor = true;
this.btnSelectHandle.Click += new System.EventHandler(this.btnSelectHandle_Click);
//
// lblControlText
//
this.lblControlText.Location = new System.Drawing.Point(324, 15);
this.lblControlText.Name = "lblControlText";
this.lblControlText.Size = new System.Drawing.Size(240, 19);
this.lblControlText.TabIndex = 1;
this.lblControlText.Text = "Text";
//
// btnCapture
//
this.btnCapture.Enabled = false;
this.btnCapture.Location = new System.Drawing.Point(12, 106);
this.btnCapture.Name = "btnCapture";
this.btnCapture.Size = new System.Drawing.Size(152, 23);
this.btnCapture.TabIndex = 2;
this.btnCapture.Text = "Start capture";
this.btnCapture.UseVisualStyleBackColor = true;
this.btnCapture.Click += new System.EventHandler(this.btnCapture_Click);
//
// captureTimer
//
this.captureTimer.Tick += new System.EventHandler(this.captureTimer_Tick);
//
// nudScrollDelay
//
this.nudScrollDelay.Location = new System.Drawing.Point(140, 46);
this.nudScrollDelay.Maximum = new decimal(new int[] {
5000,
0,
0,
0});
this.nudScrollDelay.Name = "nudScrollDelay";
this.nudScrollDelay.Size = new System.Drawing.Size(80, 20);
this.nudScrollDelay.TabIndex = 3;
this.nudScrollDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.nudScrollDelay.ValueChanged += new System.EventHandler(this.nudScrollDelay_ValueChanged);
//
// nudMaximumScrollCount
//
this.nudMaximumScrollCount.Location = new System.Drawing.Point(140, 70);
this.nudMaximumScrollCount.Name = "nudMaximumScrollCount";
this.nudMaximumScrollCount.Size = new System.Drawing.Size(80, 20);
this.nudMaximumScrollCount.TabIndex = 4;
this.nudMaximumScrollCount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.nudMaximumScrollCount.ValueChanged += new System.EventHandler(this.nudMaximumScrollCount_ValueChanged);
//
// lblScrollDelay
//
this.lblScrollDelay.AutoSize = true;
this.lblScrollDelay.Location = new System.Drawing.Point(12, 50);
this.lblScrollDelay.Name = "lblScrollDelay";
this.lblScrollDelay.Size = new System.Drawing.Size(64, 13);
this.lblScrollDelay.TabIndex = 5;
this.lblScrollDelay.Text = "Scroll delay:";
//
// lblMaximumScrollCount
//
this.lblMaximumScrollCount.AutoSize = true;
this.lblMaximumScrollCount.Location = new System.Drawing.Point(12, 74);
this.lblMaximumScrollCount.Name = "lblMaximumScrollCount";
this.lblMaximumScrollCount.Size = new System.Drawing.Size(111, 13);
this.lblMaximumScrollCount.TabIndex = 6;
this.lblMaximumScrollCount.Text = "Maximum scroll count:";
//
// tcScrollingCapture
//
this.tcScrollingCapture.Controls.Add(this.tpCapture);
this.tcScrollingCapture.Controls.Add(this.tpOutput);
this.tcScrollingCapture.Dock = System.Windows.Forms.DockStyle.Fill;
this.tcScrollingCapture.Location = new System.Drawing.Point(0, 0);
this.tcScrollingCapture.Name = "tcScrollingCapture";
this.tcScrollingCapture.SelectedIndex = 0;
this.tcScrollingCapture.Size = new System.Drawing.Size(567, 427);
this.tcScrollingCapture.TabIndex = 7;
//
// tpCapture
//
this.tpCapture.Controls.Add(this.btnSelectHandle);
this.tpCapture.Controls.Add(this.lblMaximumScrollCount);
this.tpCapture.Controls.Add(this.lblControlText);
this.tpCapture.Controls.Add(this.lblScrollDelay);
this.tpCapture.Controls.Add(this.btnCapture);
this.tpCapture.Controls.Add(this.nudMaximumScrollCount);
this.tpCapture.Controls.Add(this.nudScrollDelay);
this.tpCapture.Location = new System.Drawing.Point(4, 22);
this.tpCapture.Name = "tpCapture";
this.tpCapture.Padding = new System.Windows.Forms.Padding(3);
this.tpCapture.Size = new System.Drawing.Size(559, 401);
this.tpCapture.TabIndex = 0;
this.tpCapture.Text = "Capture";
this.tpCapture.UseVisualStyleBackColor = true;
//
// tpOutput
//
this.tpOutput.Controls.Add(this.pOutput);
this.tpOutput.Location = new System.Drawing.Point(4, 22);
this.tpOutput.Name = "tpOutput";
this.tpOutput.Padding = new System.Windows.Forms.Padding(3);
this.tpOutput.Size = new System.Drawing.Size(559, 401);
this.tpOutput.TabIndex = 1;
this.tpOutput.Text = "Output";
this.tpOutput.UseVisualStyleBackColor = true;
//
// pbOutput
//
this.pbOutput.Location = new System.Drawing.Point(0, 0);
this.pbOutput.Name = "pbOutput";
this.pbOutput.Size = new System.Drawing.Size(100, 100);
this.pbOutput.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pbOutput.TabIndex = 0;
this.pbOutput.TabStop = false;
//
// pOutput
//
this.pOutput.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pOutput.AutoScroll = true;
this.pOutput.Controls.Add(this.pbOutput);
this.pOutput.Location = new System.Drawing.Point(8, 8);
this.pOutput.Name = "pOutput";
this.pOutput.Size = new System.Drawing.Size(544, 384);
this.pOutput.TabIndex = 1;
//
// ScrollingCaptureForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(567, 427);
this.Controls.Add(this.tcScrollingCapture);
this.Name = "ScrollingCaptureForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ShareX - Scrolling capture";
((System.ComponentModel.ISupportInitialize)(this.nudScrollDelay)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudMaximumScrollCount)).EndInit();
this.tcScrollingCapture.ResumeLayout(false);
this.tpCapture.ResumeLayout(false);
this.tpCapture.PerformLayout();
this.tpOutput.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pbOutput)).EndInit();
this.pOutput.ResumeLayout(false);
this.pOutput.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnSelectHandle;
private System.Windows.Forms.Label lblControlText;
private System.Windows.Forms.Button btnCapture;
private System.Windows.Forms.Timer captureTimer;
private System.Windows.Forms.NumericUpDown nudScrollDelay;
private System.Windows.Forms.NumericUpDown nudMaximumScrollCount;
private System.Windows.Forms.Label lblScrollDelay;
private System.Windows.Forms.Label lblMaximumScrollCount;
private System.Windows.Forms.TabControl tcScrollingCapture;
private System.Windows.Forms.TabPage tpCapture;
private System.Windows.Forms.TabPage tpOutput;
private System.Windows.Forms.Panel pOutput;
private System.Windows.Forms.PictureBox pbOutput;
}
}