ShareX/UploadersLib/GUI/TwitterMsg.Designer.cs

123 lines
5.3 KiB
C#
Raw Normal View History

2013-11-03 23:53:49 +13:00
namespace UploadersLib
{
partial class TwitterMsg
{
/// <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.lbUsers = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// btnOK
//
2014-06-15 22:29:09 +12:00
this.btnOK.Location = new System.Drawing.Point(368, 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);
2013-11-03 23:53:49 +13: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
//
2014-06-15 22:29:09 +12:00
this.btnCancel.Location = new System.Drawing.Point(456, 208);
2013-11-03 23:53:49 +13:00
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(80, 24);
this.btnCancel.TabIndex = 3;
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";
2014-06-15 22:29:09 +12:00
this.txtTweet.Size = new System.Drawing.Size(416, 192);
this.txtTweet.TabIndex = 0;
2013-11-03 23:53:49 +13:00
this.txtTweet.TextChanged += new System.EventHandler(this.txtTweet_TextChanged);
//
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);
this.lblTweetLength.TabIndex = 2;
this.lblTweetLength.Text = "140";
2013-11-03 23:53:49 +13:00
//
// lbUsers
//
this.lbUsers.FormattingEnabled = true;
this.lbUsers.IntegralHeight = false;
2014-06-15 22:29:09 +12:00
this.lbUsers.Location = new System.Drawing.Point(432, 8);
2013-11-03 23:53:49 +13:00
this.lbUsers.Name = "lbUsers";
2014-06-15 22:29:09 +12:00
this.lbUsers.Size = new System.Drawing.Size(104, 192);
2013-11-03 23:53:49 +13:00
this.lbUsers.Sorted = true;
2014-06-15 22:29:09 +12:00
this.lbUsers.TabIndex = 1;
2013-11-03 23:53:49 +13:00
this.lbUsers.SelectedIndexChanged += new System.EventHandler(this.lbUsers_SelectedIndexChanged);
this.lbUsers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lbUsers_KeyDown);
//
// TwitterMsg
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2014-06-15 22:29:09 +12:00
this.ClientSize = new System.Drawing.Size(544, 240);
2013-11-03 23:53:49 +13:00
this.Controls.Add(this.txtTweet);
this.Controls.Add(this.lbUsers);
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 = "TwitterMsg";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
2014-06-15 22:29:09 +12:00
this.Text = "Update Twitter status";
2013-11-03 23:53:49 +13:00
this.TopMost = true;
this.Load += new System.EventHandler(this.TwitterMsg_Load);
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.ListBox lbUsers;
private System.Windows.Forms.TextBox txtTweet;
}
}