ShareX/UploadersLib/Forms/TwitterTweetForm.Designer.cs

107 lines
4.6 KiB
C#
Raw Normal View History

2013-11-03 23:53:49 +13:00
namespace UploadersLib
{
partial class TwitterTweetForm
2013-11-03 23:53:49 +13:00
{
/// <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.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.txtTweet = new System.Windows.Forms.TextBox();
2014-06-15 22:29:09 +12:00
this.lblTweetLength = new System.Windows.Forms.Label();
2013-11-03 23:53:49 +13:00
this.SuspendLayout();
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(224, 208);
2013-11-03 23:53:49 +13:00
this.btnOK.Name = "btnOK";
2014-06-15 22:29:09 +12:00
this.btnOK.Size = new System.Drawing.Size(80, 24);
2014-06-26 08:45:57 +12:00
this.btnOK.TabIndex = 2;
2014-06-15 22:29:09 +12:00
this.btnOK.Text = "&Tweet";
2013-11-03 23:53:49 +13:00
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(312, 208);
2013-11-03 23:53:49 +13:00
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(80, 24);
2014-06-26 08:45:57 +12:00
this.btnCancel.TabIndex = 3;
2013-11-03 23:53:49 +13:00
this.btnCancel.Text = "&Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// txtTweet
//
this.txtTweet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtTweet.Font = new System.Drawing.Font("Calibri", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
2014-06-15 22:29:09 +12:00
this.txtTweet.Location = new System.Drawing.Point(8, 8);
2013-11-03 23:53:49 +13:00
this.txtTweet.Multiline = true;
this.txtTweet.Name = "txtTweet";
this.txtTweet.Size = new System.Drawing.Size(384, 192);
2014-06-15 22:29:09 +12:00
this.txtTweet.TabIndex = 0;
2013-11-03 23:53:49 +13:00
this.txtTweet.TextChanged += new System.EventHandler(this.txtTweet_TextChanged);
this.txtTweet.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtTweet_KeyDown);
2013-11-03 23:53:49 +13:00
//
2014-06-15 22:29:09 +12:00
// lblTweetLength
2013-11-03 23:53:49 +13:00
//
2014-06-15 22:29:09 +12:00
this.lblTweetLength.AutoSize = true;
this.lblTweetLength.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
this.lblTweetLength.Location = new System.Drawing.Point(8, 208);
this.lblTweetLength.Name = "lblTweetLength";
this.lblTweetLength.Size = new System.Drawing.Size(36, 20);
2014-06-26 08:45:57 +12:00
this.lblTweetLength.TabIndex = 1;
2014-06-15 22:29:09 +12:00
this.lblTweetLength.Text = "140";
2013-11-03 23:53:49 +13:00
//
// TwitterTweetForm
2013-11-03 23:53:49 +13:00
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(400, 240);
2013-11-03 23:53:49 +13:00
this.Controls.Add(this.txtTweet);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
2014-06-15 22:29:09 +12:00
this.Controls.Add(this.lblTweetLength);
2013-11-03 23:53:49 +13:00
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "TwitterTweetForm";
2013-11-03 23:53:49 +13:00
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ShareX - Twitter message";
this.Shown += new System.EventHandler(this.TwitterMsg_Shown);
2013-11-03 23:53:49 +13:00
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion Windows Form Designer generated code
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
2014-06-15 22:29:09 +12:00
private System.Windows.Forms.Label lblTweetLength;
2013-11-03 23:53:49 +13:00
private System.Windows.Forms.TextBox txtTweet;
}
}