89 lines
4.1 KiB
C#
89 lines
4.1 KiB
C#
namespace uploader
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
|
|
this.dragLabel = new DarkUI.Controls.DarkLabel();
|
|
this.moreLabel = new DarkUI.Controls.DarkLabel();
|
|
this.SuspendLayout();
|
|
//
|
|
// dragLabel
|
|
//
|
|
this.dragLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
|
this.dragLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.dragLabel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
|
|
this.dragLabel.Location = new System.Drawing.Point(107, 142);
|
|
this.dragLabel.Name = "dragLabel";
|
|
this.dragLabel.Size = new System.Drawing.Size(166, 65);
|
|
this.dragLabel.TabIndex = 0;
|
|
this.dragLabel.Text = "Drag file here";
|
|
this.dragLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
// moreLabel
|
|
//
|
|
this.moreLabel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
|
this.moreLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.moreLabel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
|
|
this.moreLabel.Location = new System.Drawing.Point(140, 329);
|
|
this.moreLabel.Name = "moreLabel";
|
|
this.moreLabel.Size = new System.Drawing.Size(100, 23);
|
|
this.moreLabel.TabIndex = 1;
|
|
this.moreLabel.Text = "More";
|
|
this.moreLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
this.moreLabel.Click += new System.EventHandler(this.moreLabel_Click);
|
|
//
|
|
// MainForm
|
|
//
|
|
this.AllowDrop = true;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(384, 361);
|
|
this.Controls.Add(this.moreLabel);
|
|
this.Controls.Add(this.dragLabel);
|
|
this.Cursor = System.Windows.Forms.Cursors.Default;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "MainForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "VirusTotal Uploder";
|
|
this.Load += new System.EventHandler(this.MainForm_Load);
|
|
this.Shown += new System.EventHandler(this.MainForm_Shown);
|
|
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.MainForm_DragDrop);
|
|
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.MainForm_DragEnter);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DarkUI.Controls.DarkLabel dragLabel;
|
|
private DarkUI.Controls.DarkLabel moreLabel;
|
|
}
|
|
}
|
|
|