ShareX/ShareX.ScreenCaptureLib/Forms/ScrollingCaptureOptionsForm.Designer.cs

213 lines
9.1 KiB
C#
Raw Normal View History

2023-03-05 09:41:48 +13:00
namespace ShareX.ScreenCaptureLib
{
partial class ScrollingCaptureOptionsForm
{
/// <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()
{
this.lblStartDelay = new System.Windows.Forms.Label();
this.nudStartDelay = new System.Windows.Forms.NumericUpDown();
this.lblScrollDelay = new System.Windows.Forms.Label();
this.nudScrollDelay = new System.Windows.Forms.NumericUpDown();
2023-03-07 10:14:02 +13:00
this.cbAutoScrollTop = new System.Windows.Forms.CheckBox();
2023-03-08 16:23:05 +13:00
this.lblScrollAmount = new System.Windows.Forms.Label();
this.nudScrollAmount = new System.Windows.Forms.NumericUpDown();
2023-03-08 16:47:44 +13:00
this.cbAutoUpload = new System.Windows.Forms.CheckBox();
2023-03-05 09:41:48 +13:00
((System.ComponentModel.ISupportInitialize)(this.nudStartDelay)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nudScrollDelay)).BeginInit();
2023-03-08 16:23:05 +13:00
((System.ComponentModel.ISupportInitialize)(this.nudScrollAmount)).BeginInit();
2023-03-05 09:41:48 +13:00
this.SuspendLayout();
//
// lblStartDelay
//
this.lblStartDelay.AutoSize = true;
this.lblStartDelay.Location = new System.Drawing.Point(13, 16);
this.lblStartDelay.Name = "lblStartDelay";
this.lblStartDelay.Size = new System.Drawing.Size(74, 16);
this.lblStartDelay.TabIndex = 0;
this.lblStartDelay.Text = "Start delay:";
//
// nudStartDelay
//
this.nudStartDelay.Increment = new decimal(new int[] {
100,
0,
0,
0});
this.nudStartDelay.Location = new System.Drawing.Point(16, 40);
this.nudStartDelay.Maximum = new decimal(new int[] {
5000,
0,
0,
0});
this.nudStartDelay.Minimum = new decimal(new int[] {
100,
0,
0,
0});
this.nudStartDelay.Name = "nudStartDelay";
this.nudStartDelay.Size = new System.Drawing.Size(80, 22);
this.nudStartDelay.TabIndex = 1;
this.nudStartDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.nudStartDelay.Value = new decimal(new int[] {
500,
0,
0,
0});
this.nudStartDelay.ValueChanged += new System.EventHandler(this.nudStartDelay_ValueChanged);
//
// lblScrollDelay
//
this.lblScrollDelay.AutoSize = true;
2023-03-07 10:14:02 +13:00
this.lblScrollDelay.Location = new System.Drawing.Point(13, 112);
2023-03-05 09:41:48 +13:00
this.lblScrollDelay.Name = "lblScrollDelay";
this.lblScrollDelay.Size = new System.Drawing.Size(81, 16);
2023-03-08 16:23:05 +13:00
this.lblScrollDelay.TabIndex = 3;
2023-03-05 09:41:48 +13:00
this.lblScrollDelay.Text = "Scroll delay:";
//
// nudScrollDelay
//
this.nudScrollDelay.Increment = new decimal(new int[] {
100,
0,
0,
0});
2023-03-07 10:14:02 +13:00
this.nudScrollDelay.Location = new System.Drawing.Point(16, 136);
2023-03-05 09:41:48 +13:00
this.nudScrollDelay.Maximum = new decimal(new int[] {
5000,
0,
0,
0});
this.nudScrollDelay.Minimum = new decimal(new int[] {
100,
0,
0,
0});
this.nudScrollDelay.Name = "nudScrollDelay";
this.nudScrollDelay.Size = new System.Drawing.Size(80, 22);
2023-03-08 16:23:05 +13:00
this.nudScrollDelay.TabIndex = 4;
2023-03-05 09:41:48 +13:00
this.nudScrollDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.nudScrollDelay.Value = new decimal(new int[] {
500,
0,
0,
0});
this.nudScrollDelay.ValueChanged += new System.EventHandler(this.nudScrollDelay_ValueChanged);
//
2023-03-07 10:14:02 +13:00
// cbAutoScrollTop
//
this.cbAutoScrollTop.AutoSize = true;
this.cbAutoScrollTop.Location = new System.Drawing.Point(16, 80);
this.cbAutoScrollTop.Name = "cbAutoScrollTop";
this.cbAutoScrollTop.Size = new System.Drawing.Size(177, 20);
2023-03-08 16:23:05 +13:00
this.cbAutoScrollTop.TabIndex = 2;
2023-03-07 10:14:02 +13:00
this.cbAutoScrollTop.Text = "Automatically scroll to top";
this.cbAutoScrollTop.UseVisualStyleBackColor = true;
this.cbAutoScrollTop.CheckedChanged += new System.EventHandler(this.cbAutoScrollTop_CheckedChanged);
//
2023-03-08 16:23:05 +13:00
// lblScrollAmount
//
this.lblScrollAmount.AutoSize = true;
this.lblScrollAmount.Location = new System.Drawing.Point(13, 176);
this.lblScrollAmount.Name = "lblScrollAmount";
this.lblScrollAmount.Size = new System.Drawing.Size(91, 16);
this.lblScrollAmount.TabIndex = 5;
this.lblScrollAmount.Text = "Scroll amount:";
//
// nudScrollAmount
//
this.nudScrollAmount.Location = new System.Drawing.Point(16, 200);
this.nudScrollAmount.Maximum = new decimal(new int[] {
5,
0,
0,
0});
this.nudScrollAmount.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.nudScrollAmount.Name = "nudScrollAmount";
this.nudScrollAmount.Size = new System.Drawing.Size(80, 22);
this.nudScrollAmount.TabIndex = 6;
this.nudScrollAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.nudScrollAmount.Value = new decimal(new int[] {
1,
0,
0,
0});
this.nudScrollAmount.ValueChanged += new System.EventHandler(this.nudScrollAmount_ValueChanged);
//
2023-03-08 16:47:44 +13:00
// cbAutoUpload
//
this.cbAutoUpload.AutoSize = true;
this.cbAutoUpload.Location = new System.Drawing.Point(16, 240);
this.cbAutoUpload.Name = "cbAutoUpload";
this.cbAutoUpload.Size = new System.Drawing.Size(191, 20);
this.cbAutoUpload.TabIndex = 7;
this.cbAutoUpload.Text = "Automatically upload / save";
this.cbAutoUpload.UseVisualStyleBackColor = true;
this.cbAutoUpload.CheckedChanged += new System.EventHandler(this.cbAutoUpload_CheckedChanged);
//
2023-03-05 09:41:48 +13:00
// ScrollingCaptureOptionsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
2023-03-08 16:23:05 +13:00
this.ClientSize = new System.Drawing.Size(384, 311);
2023-03-08 16:47:44 +13:00
this.Controls.Add(this.cbAutoUpload);
2023-03-08 16:23:05 +13:00
this.Controls.Add(this.nudScrollAmount);
this.Controls.Add(this.lblScrollAmount);
2023-03-07 10:14:02 +13:00
this.Controls.Add(this.cbAutoScrollTop);
2023-03-05 09:41:48 +13:00
this.Controls.Add(this.nudScrollDelay);
this.Controls.Add(this.lblScrollDelay);
this.Controls.Add(this.nudStartDelay);
this.Controls.Add(this.lblStartDelay);
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "ScrollingCaptureOptionsForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ShareX - Scrolling capture options";
((System.ComponentModel.ISupportInitialize)(this.nudStartDelay)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudScrollDelay)).EndInit();
2023-03-08 16:23:05 +13:00
((System.ComponentModel.ISupportInitialize)(this.nudScrollAmount)).EndInit();
2023-03-05 09:41:48 +13:00
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblStartDelay;
private System.Windows.Forms.NumericUpDown nudStartDelay;
private System.Windows.Forms.Label lblScrollDelay;
private System.Windows.Forms.NumericUpDown nudScrollDelay;
2023-03-07 10:14:02 +13:00
private System.Windows.Forms.CheckBox cbAutoScrollTop;
2023-03-08 16:23:05 +13:00
private System.Windows.Forms.Label lblScrollAmount;
private System.Windows.Forms.NumericUpDown nudScrollAmount;
2023-03-08 16:47:44 +13:00
private System.Windows.Forms.CheckBox cbAutoUpload;
2023-03-05 09:41:48 +13:00
}
}