ShareX/ShareX/Forms/FirstTimeUploadForm.Designer.cs

97 lines
3.7 KiB
C#

namespace ShareX
{
partial class FirstTimeUploadForm
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FirstTimeUploadForm));
this.lblInfo = new System.Windows.Forms.Label();
this.btnYes = new System.Windows.Forms.Button();
this.btnNo = new System.Windows.Forms.Button();
this.lblHeader = new System.Windows.Forms.Label();
this.tCountdown = new System.Windows.Forms.Timer(this.components);
this.SuspendLayout();
//
// lblInfo
//
resources.ApplyResources(this.lblInfo, "lblInfo");
this.lblInfo.Name = "lblInfo";
//
// btnYes
//
this.btnYes.DialogResult = System.Windows.Forms.DialogResult.Yes;
resources.ApplyResources(this.btnYes, "btnYes");
this.btnYes.Name = "btnYes";
this.btnYes.UseVisualStyleBackColor = true;
this.btnYes.Click += new System.EventHandler(this.btnYes_Click);
//
// btnNo
//
this.btnNo.DialogResult = System.Windows.Forms.DialogResult.No;
resources.ApplyResources(this.btnNo, "btnNo");
this.btnNo.Name = "btnNo";
this.btnNo.UseVisualStyleBackColor = true;
this.btnNo.Click += new System.EventHandler(this.btnNo_Click);
//
// lblHeader
//
resources.ApplyResources(this.lblHeader, "lblHeader");
this.lblHeader.Name = "lblHeader";
//
// tCountdown
//
this.tCountdown.Interval = 1000;
this.tCountdown.Tick += new System.EventHandler(this.tCountdown_Tick);
//
// FirstTimeUploadForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnNo;
this.Controls.Add(this.lblHeader);
this.Controls.Add(this.btnNo);
this.Controls.Add(this.btnYes);
this.Controls.Add(this.lblInfo);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FirstTimeUploadForm";
this.Shown += new System.EventHandler(this.FirstTimeUploadForm_Shown);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label lblInfo;
private System.Windows.Forms.Button btnYes;
private System.Windows.Forms.Button btnNo;
private System.Windows.Forms.Label lblHeader;
private System.Windows.Forms.Timer tCountdown;
}
}