Files
weixinHttpApi/MainForm.Designer.cs
2016-01-08 10:23:50 +08:00

178 lines
7.8 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace WeiXinZhuaFaWang
{
partial class MainForm
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.listBox1 = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.lstBoxUser = new System.Windows.Forms.ListBox();
this.btnSend = new System.Windows.Forms.Button();
this.txtBoxMessage = new System.Windows.Forms.TextBox();
this.btnGetUserList = new System.Windows.Forms.Button();
this.btnSendFile = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// pictureBox1
//
this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox1.Location = new System.Drawing.Point(388, 69);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(332, 300);
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.HorizontalScrollbar = true;
this.listBox1.ItemHeight = 12;
this.listBox1.Location = new System.Drawing.Point(0, 276);
this.listBox1.Name = "listBox1";
this.listBox1.ScrollAlwaysVisible = true;
this.listBox1.Size = new System.Drawing.Size(1117, 232);
this.listBox1.TabIndex = 1;
this.listBox1.Visible = false;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(21, 383);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 2;
this.label1.Text = "label1";
this.label1.Visible = false;
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(23, 414);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(406, 77);
this.textBox1.TabIndex = 3;
this.textBox1.Visible = false;
//
// lstBoxUser
//
this.lstBoxUser.FormattingEnabled = true;
this.lstBoxUser.ItemHeight = 12;
this.lstBoxUser.Location = new System.Drawing.Point(0, 4);
this.lstBoxUser.Name = "lstBoxUser";
this.lstBoxUser.ScrollAlwaysVisible = true;
this.lstBoxUser.Size = new System.Drawing.Size(331, 268);
this.lstBoxUser.TabIndex = 4;
this.lstBoxUser.Visible = false;
//
// btnSend
//
this.btnSend.Location = new System.Drawing.Point(1042, 247);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(75, 23);
this.btnSend.TabIndex = 5;
this.btnSend.Text = "发送信息";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Visible = false;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// txtBoxMessage
//
this.txtBoxMessage.Location = new System.Drawing.Point(338, 4);
this.txtBoxMessage.Multiline = true;
this.txtBoxMessage.Name = "txtBoxMessage";
this.txtBoxMessage.Size = new System.Drawing.Size(779, 237);
this.txtBoxMessage.TabIndex = 6;
this.txtBoxMessage.Visible = false;
//
// btnGetUserList
//
this.btnGetUserList.Location = new System.Drawing.Point(338, 247);
this.btnGetUserList.Name = "btnGetUserList";
this.btnGetUserList.Size = new System.Drawing.Size(124, 23);
this.btnGetUserList.TabIndex = 5;
this.btnGetUserList.Text = "获取最新用户列表";
this.btnGetUserList.UseVisualStyleBackColor = true;
this.btnGetUserList.Visible = false;
this.btnGetUserList.Click += new System.EventHandler(this.btnGetUserList_Click);
//
// btnSendFile
//
this.btnSendFile.Location = new System.Drawing.Point(922, 247);
this.btnSendFile.Name = "btnSendFile";
this.btnSendFile.Size = new System.Drawing.Size(75, 23);
this.btnSendFile.TabIndex = 5;
this.btnSendFile.Text = "发送文件";
this.btnSendFile.UseVisualStyleBackColor = true;
this.btnSendFile.Click += new System.EventHandler(this.btnSendFile_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1118, 516);
this.Controls.Add(this.txtBoxMessage);
this.Controls.Add(this.btnGetUserList);
this.Controls.Add(this.btnSendFile);
this.Controls.Add(this.btnSend);
this.Controls.Add(this.lstBoxUser);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label1);
this.Controls.Add(this.pictureBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "转发微信机器人 V0.5 20151007 By LXW";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
public System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.ListBox lstBoxUser;
private System.Windows.Forms.Button btnSend;
private System.Windows.Forms.TextBox txtBoxMessage;
private System.Windows.Forms.Button btnGetUserList;
private System.Windows.Forms.Button btnSendFile;
}
}