| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971 |
- namespace IPADDemo
- {
- partial class FormDemo
- {
- /// <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(FormDemo));
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.tabControl1 = new System.Windows.Forms.TabControl();
- this.tabPage1 = new System.Windows.Forms.TabPage();
- this.button24 = new System.Windows.Forms.Button();
- this.txt_linkImgUrl = new System.Windows.Forms.TextBox();
- this.label28 = new System.Windows.Forms.Label();
- this.txt_linkUrl = new System.Windows.Forms.TextBox();
- this.label27 = new System.Windows.Forms.Label();
- this.txt_linkDesc = new System.Windows.Forms.TextBox();
- this.label26 = new System.Windows.Forms.Label();
- this.txt_linkSdkVer = new System.Windows.Forms.TextBox();
- this.label25 = new System.Windows.Forms.Label();
- this.txt_linkAppId = new System.Windows.Forms.TextBox();
- this.label24 = new System.Windows.Forms.Label();
- this.txt_linkTitle = new System.Windows.Forms.TextBox();
- this.label23 = new System.Windows.Forms.Label();
- this.button23 = new System.Windows.Forms.Button();
- this.button17 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.txt_msgText = new System.Windows.Forms.TextBox();
- this.label3 = new System.Windows.Forms.Label();
- this.txt_msgWxid = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.tabPage2 = new System.Windows.Forms.TabPage();
- this.txt_snsContext = new System.Windows.Forms.TextBox();
- this.label40 = new System.Windows.Forms.Label();
- this.button34 = new System.Windows.Forms.Button();
- this.txt_snsPlId = new System.Windows.Forms.TextBox();
- this.label39 = new System.Windows.Forms.Label();
- this.button33 = new System.Windows.Forms.Button();
- this.txt_snsId = new System.Windows.Forms.TextBox();
- this.label38 = new System.Windows.Forms.Label();
- this.button32 = new System.Windows.Forms.Button();
- this.txt_snswxid = new System.Windows.Forms.TextBox();
- this.label37 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.listBox1 = new System.Windows.Forms.ListBox();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.txt_snsText = new System.Windows.Forms.TextBox();
- this.label4 = new System.Windows.Forms.Label();
- this.tabPage3 = new System.Windows.Forms.TabPage();
- this.button37 = new System.Windows.Forms.Button();
- this.button36 = new System.Windows.Forms.Button();
- this.txt_friendRemark = new System.Windows.Forms.TextBox();
- this.label41 = new System.Windows.Forms.Label();
- this.button35 = new System.Windows.Forms.Button();
- this.txt_friendwxid = new System.Windows.Forms.TextBox();
- this.label6 = new System.Windows.Forms.Label();
- this.lb_friend = new System.Windows.Forms.ListBox();
- this.label5 = new System.Windows.Forms.Label();
- this.tabPage4 = new System.Windows.Forms.TabPage();
- this.button39 = new System.Windows.Forms.Button();
- this.button38 = new System.Windows.Forms.Button();
- this.lb_group = new System.Windows.Forms.ListBox();
- this.label29 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.txt_groupgg = new System.Windows.Forms.TextBox();
- this.label10 = new System.Windows.Forms.Label();
- this.button9 = new System.Windows.Forms.Button();
- this.txt_groupname = new System.Windows.Forms.TextBox();
- this.label11 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.txt_groupwxid = new System.Windows.Forms.TextBox();
- this.label9 = new System.Windows.Forms.Label();
- this.button7 = new System.Windows.Forms.Button();
- this.txt_groupuserwxid = new System.Windows.Forms.TextBox();
- this.label8 = new System.Windows.Forms.Label();
- this.button6 = new System.Windows.Forms.Button();
- this.txt_GroupUsers = new System.Windows.Forms.TextBox();
- this.label7 = new System.Windows.Forms.Label();
- this.tabPage5 = new System.Windows.Forms.TabPage();
- this.button20 = new System.Windows.Forms.Button();
- this.button19 = new System.Windows.Forms.Button();
- this.button18 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.txt_loginToken = new System.Windows.Forms.TextBox();
- this.label15 = new System.Windows.Forms.Label();
- this.txt_login62 = new System.Windows.Forms.TextBox();
- this.label14 = new System.Windows.Forms.Label();
- this.txt_loginPassword = new System.Windows.Forms.TextBox();
- this.label13 = new System.Windows.Forms.Label();
- this.txt_loginName = new System.Windows.Forms.TextBox();
- this.label12 = new System.Windows.Forms.Label();
- this.tabPage6 = new System.Windows.Forms.TabPage();
- this.button16 = new System.Windows.Forms.Button();
- this.label21 = new System.Windows.Forms.Label();
- this.cb_addtype = new System.Windows.Forms.ComboBox();
- this.txt_hellotext = new System.Windows.Forms.TextBox();
- this.label20 = new System.Windows.Forms.Label();
- this.txt_v2 = new System.Windows.Forms.TextBox();
- this.label19 = new System.Windows.Forms.Label();
- this.txt_v1 = new System.Windows.Forms.TextBox();
- this.label18 = new System.Windows.Forms.Label();
- this.txt_positionReturn = new System.Windows.Forms.TextBox();
- this.button15 = new System.Windows.Forms.Button();
- this.txt_Lng = new System.Windows.Forms.TextBox();
- this.label17 = new System.Windows.Forms.Label();
- this.txt_Lat = new System.Windows.Forms.TextBox();
- this.label16 = new System.Windows.Forms.Label();
- this.tabPage8 = new System.Windows.Forms.TabPage();
- this.button40 = new System.Windows.Forms.Button();
- this.txt_gzhKey = new System.Windows.Forms.TextBox();
- this.label43 = new System.Windows.Forms.Label();
- this.txt_gzhUin = new System.Windows.Forms.TextBox();
- this.label42 = new System.Windows.Forms.Label();
- this.lb_gzh = new System.Windows.Forms.ListBox();
- this.button22 = new System.Windows.Forms.Button();
- this.txt_gzhlog = new System.Windows.Forms.TextBox();
- this.button21 = new System.Windows.Forms.Button();
- this.txt_gzhid = new System.Windows.Forms.TextBox();
- this.label22 = new System.Windows.Forms.Label();
- this.tabPage7 = new System.Windows.Forms.TabPage();
- this.txt_msgcallback = new System.Windows.Forms.TextBox();
- this.tabPage9 = new System.Windows.Forms.TabPage();
- this.button28 = new System.Windows.Forms.Button();
- this.txt_labelId1 = new System.Windows.Forms.TextBox();
- this.label33 = new System.Windows.Forms.Label();
- this.button27 = new System.Windows.Forms.Button();
- this.txt_labelName = new System.Windows.Forms.TextBox();
- this.label32 = new System.Windows.Forms.Label();
- this.button26 = new System.Windows.Forms.Button();
- this.txt_labelId = new System.Windows.Forms.TextBox();
- this.label31 = new System.Windows.Forms.Label();
- this.txt_labelWxid = new System.Windows.Forms.TextBox();
- this.label30 = new System.Windows.Forms.Label();
- this.txt_labelList = new System.Windows.Forms.TextBox();
- this.button25 = new System.Windows.Forms.Button();
- this.tabPage10 = new System.Windows.Forms.TabPage();
- this.txt_favItem = new System.Windows.Forms.TextBox();
- this.txt_favId = new System.Windows.Forms.TextBox();
- this.label36 = new System.Windows.Forms.Label();
- this.button31 = new System.Windows.Forms.Button();
- this.txt_favObject = new System.Windows.Forms.TextBox();
- this.label35 = new System.Windows.Forms.Label();
- this.button30 = new System.Windows.Forms.Button();
- this.txt_favKey = new System.Windows.Forms.TextBox();
- this.label34 = new System.Windows.Forms.Label();
- this.button29 = new System.Windows.Forms.Button();
- this.button14 = new System.Windows.Forms.Button();
- this.tabPage11 = new System.Windows.Forms.TabPage();
- this.txt_setWxid = new System.Windows.Forms.TextBox();
- this.label44 = new System.Windows.Forms.Label();
- this.button41 = new System.Windows.Forms.Button();
- this.tabPage12 = new System.Windows.Forms.TabPage();
- this.button42 = new System.Windows.Forms.Button();
- this.txt_qrcodeLog = new System.Windows.Forms.TextBox();
- this.label45 = new System.Windows.Forms.Label();
- this.label46 = new System.Windows.Forms.Label();
- this.txt_orderUrl = new System.Windows.Forms.TextBox();
- this.button43 = new System.Windows.Forms.Button();
- this.button44 = new System.Windows.Forms.Button();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.tabControl1.SuspendLayout();
- this.tabPage1.SuspendLayout();
- this.tabPage2.SuspendLayout();
- this.tabPage3.SuspendLayout();
- this.tabPage4.SuspendLayout();
- this.tabPage5.SuspendLayout();
- this.tabPage6.SuspendLayout();
- this.tabPage8.SuspendLayout();
- this.tabPage7.SuspendLayout();
- this.tabPage9.SuspendLayout();
- this.tabPage10.SuspendLayout();
- this.tabPage11.SuspendLayout();
- this.tabPage12.SuspendLayout();
- this.SuspendLayout();
- //
- // pictureBox1
- //
- this.pictureBox1.Location = new System.Drawing.Point(13, 13);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(191, 185);
- this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
- this.pictureBox1.TabIndex = 0;
- this.pictureBox1.TabStop = false;
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(12, 248);
- this.textBox1.Multiline = true;
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(192, 126);
- this.textBox1.TabIndex = 1;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(12, 216);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(39, 15);
- this.label1.TabIndex = 2;
- this.label1.Text = "log:";
- //
- // tabControl1
- //
- this.tabControl1.Controls.Add(this.tabPage1);
- this.tabControl1.Controls.Add(this.tabPage2);
- this.tabControl1.Controls.Add(this.tabPage3);
- this.tabControl1.Controls.Add(this.tabPage4);
- this.tabControl1.Controls.Add(this.tabPage5);
- this.tabControl1.Controls.Add(this.tabPage6);
- this.tabControl1.Controls.Add(this.tabPage8);
- this.tabControl1.Controls.Add(this.tabPage7);
- this.tabControl1.Controls.Add(this.tabPage9);
- this.tabControl1.Controls.Add(this.tabPage10);
- this.tabControl1.Controls.Add(this.tabPage11);
- this.tabControl1.Controls.Add(this.tabPage12);
- this.tabControl1.Location = new System.Drawing.Point(223, 13);
- this.tabControl1.Name = "tabControl1";
- this.tabControl1.SelectedIndex = 0;
- this.tabControl1.Size = new System.Drawing.Size(773, 425);
- this.tabControl1.TabIndex = 3;
- //
- // tabPage1
- //
- this.tabPage1.Controls.Add(this.button24);
- this.tabPage1.Controls.Add(this.txt_linkImgUrl);
- this.tabPage1.Controls.Add(this.label28);
- this.tabPage1.Controls.Add(this.txt_linkUrl);
- this.tabPage1.Controls.Add(this.label27);
- this.tabPage1.Controls.Add(this.txt_linkDesc);
- this.tabPage1.Controls.Add(this.label26);
- this.tabPage1.Controls.Add(this.txt_linkSdkVer);
- this.tabPage1.Controls.Add(this.label25);
- this.tabPage1.Controls.Add(this.txt_linkAppId);
- this.tabPage1.Controls.Add(this.label24);
- this.tabPage1.Controls.Add(this.txt_linkTitle);
- this.tabPage1.Controls.Add(this.label23);
- this.tabPage1.Controls.Add(this.button23);
- this.tabPage1.Controls.Add(this.button17);
- this.tabPage1.Controls.Add(this.button2);
- this.tabPage1.Controls.Add(this.button1);
- this.tabPage1.Controls.Add(this.txt_msgText);
- this.tabPage1.Controls.Add(this.label3);
- this.tabPage1.Controls.Add(this.txt_msgWxid);
- this.tabPage1.Controls.Add(this.label2);
- this.tabPage1.Location = new System.Drawing.Point(4, 25);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage1.Size = new System.Drawing.Size(765, 396);
- this.tabPage1.TabIndex = 0;
- this.tabPage1.Text = "消息模块";
- this.tabPage1.UseVisualStyleBackColor = true;
- //
- // button24
- //
- this.button24.Location = new System.Drawing.Point(51, 341);
- this.button24.Name = "button24";
- this.button24.Size = new System.Drawing.Size(107, 35);
- this.button24.TabIndex = 20;
- this.button24.Text = "发送链接";
- this.button24.UseVisualStyleBackColor = true;
- this.button24.Click += new System.EventHandler(this.button24_Click);
- //
- // txt_linkImgUrl
- //
- this.txt_linkImgUrl.Location = new System.Drawing.Point(109, 291);
- this.txt_linkImgUrl.Name = "txt_linkImgUrl";
- this.txt_linkImgUrl.Size = new System.Drawing.Size(638, 25);
- this.txt_linkImgUrl.TabIndex = 19;
- this.txt_linkImgUrl.Text = "https://avatars2.githubusercontent.com/u/26290929?s=460&v=4";
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Location = new System.Drawing.Point(27, 294);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(76, 15);
- this.label28.TabIndex = 18;
- this.label28.Text = "图片url:";
- //
- // txt_linkUrl
- //
- this.txt_linkUrl.Location = new System.Drawing.Point(109, 251);
- this.txt_linkUrl.Name = "txt_linkUrl";
- this.txt_linkUrl.Size = new System.Drawing.Size(638, 25);
- this.txt_linkUrl.TabIndex = 17;
- this.txt_linkUrl.Text = "https://github.com/xuzeyu91/Xzy.Mac.WeChat";
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.Location = new System.Drawing.Point(57, 254);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(46, 15);
- this.label27.TabIndex = 16;
- this.label27.Text = "url:";
- //
- // txt_linkDesc
- //
- this.txt_linkDesc.Location = new System.Drawing.Point(109, 210);
- this.txt_linkDesc.Name = "txt_linkDesc";
- this.txt_linkDesc.Size = new System.Drawing.Size(638, 25);
- this.txt_linkDesc.TabIndex = 15;
- this.txt_linkDesc.Text = "test";
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Location = new System.Drawing.Point(21, 213);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(82, 15);
- this.label26.TabIndex = 14;
- this.label26.Text = "链接描述:";
- //
- // txt_linkSdkVer
- //
- this.txt_linkSdkVer.Location = new System.Drawing.Point(589, 175);
- this.txt_linkSdkVer.Name = "txt_linkSdkVer";
- this.txt_linkSdkVer.Size = new System.Drawing.Size(158, 25);
- this.txt_linkSdkVer.TabIndex = 13;
- this.txt_linkSdkVer.Text = "0";
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.Location = new System.Drawing.Point(513, 181);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(70, 15);
- this.label25.TabIndex = 12;
- this.label25.Text = "sdkVer:";
- //
- // txt_linkAppId
- //
- this.txt_linkAppId.Location = new System.Drawing.Point(331, 175);
- this.txt_linkAppId.Name = "txt_linkAppId";
- this.txt_linkAppId.Size = new System.Drawing.Size(158, 25);
- this.txt_linkAppId.TabIndex = 11;
- this.txt_linkAppId.Text = "wx0f76313b15c62c93";
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Location = new System.Drawing.Point(279, 178);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(62, 15);
- this.label24.TabIndex = 10;
- this.label24.Text = "appid:";
- //
- // txt_linkTitle
- //
- this.txt_linkTitle.Location = new System.Drawing.Point(109, 175);
- this.txt_linkTitle.Name = "txt_linkTitle";
- this.txt_linkTitle.Size = new System.Drawing.Size(158, 25);
- this.txt_linkTitle.TabIndex = 9;
- this.txt_linkTitle.Text = "协议链接demo";
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Location = new System.Drawing.Point(21, 178);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(82, 15);
- this.label23.TabIndex = 8;
- this.label23.Text = "链接标题:";
- //
- // button23
- //
- this.button23.Location = new System.Drawing.Point(331, 117);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(135, 31);
- this.button23.TabIndex = 7;
- this.button23.Text = "发送语音MP3";
- this.button23.UseVisualStyleBackColor = true;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- //
- // button17
- //
- this.button17.Location = new System.Drawing.Point(189, 117);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(116, 31);
- this.button17.TabIndex = 6;
- this.button17.Text = "发送语音silk";
- this.button17.UseVisualStyleBackColor = true;
- this.button17.Click += new System.EventHandler(this.button17_Click);
- //
- // button2
- //
- this.button2.Location = new System.Drawing.Point(51, 117);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(107, 31);
- this.button2.TabIndex = 5;
- this.button2.Text = "发送图片";
- this.button2.UseVisualStyleBackColor = true;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(485, 59);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(86, 28);
- this.button1.TabIndex = 4;
- this.button1.Text = "发送";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // txt_msgText
- //
- this.txt_msgText.Location = new System.Drawing.Point(122, 59);
- this.txt_msgText.Name = "txt_msgText";
- this.txt_msgText.Size = new System.Drawing.Size(344, 25);
- this.txt_msgText.TabIndex = 3;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(34, 62);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(82, 15);
- this.label3.TabIndex = 2;
- this.label3.Text = "文字消息:";
- //
- // txt_msgWxid
- //
- this.txt_msgWxid.Location = new System.Drawing.Point(122, 13);
- this.txt_msgWxid.Name = "txt_msgWxid";
- this.txt_msgWxid.Size = new System.Drawing.Size(206, 25);
- this.txt_msgWxid.TabIndex = 1;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(18, 18);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(98, 15);
- this.label2.TabIndex = 0;
- this.label2.Text = "好友微信id:";
- //
- // tabPage2
- //
- this.tabPage2.Controls.Add(this.txt_snsContext);
- this.tabPage2.Controls.Add(this.label40);
- this.tabPage2.Controls.Add(this.button34);
- this.tabPage2.Controls.Add(this.txt_snsPlId);
- this.tabPage2.Controls.Add(this.label39);
- this.tabPage2.Controls.Add(this.button33);
- this.tabPage2.Controls.Add(this.txt_snsId);
- this.tabPage2.Controls.Add(this.label38);
- this.tabPage2.Controls.Add(this.button32);
- this.tabPage2.Controls.Add(this.txt_snswxid);
- this.tabPage2.Controls.Add(this.label37);
- this.tabPage2.Controls.Add(this.button5);
- this.tabPage2.Controls.Add(this.listBox1);
- this.tabPage2.Controls.Add(this.button4);
- this.tabPage2.Controls.Add(this.button3);
- this.tabPage2.Controls.Add(this.txt_snsText);
- this.tabPage2.Controls.Add(this.label4);
- this.tabPage2.Location = new System.Drawing.Point(4, 25);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage2.Size = new System.Drawing.Size(765, 396);
- this.tabPage2.TabIndex = 1;
- this.tabPage2.Text = "朋友圈模块";
- this.tabPage2.UseVisualStyleBackColor = true;
- //
- // txt_snsContext
- //
- this.txt_snsContext.Location = new System.Drawing.Point(489, 151);
- this.txt_snsContext.Name = "txt_snsContext";
- this.txt_snsContext.Size = new System.Drawing.Size(151, 25);
- this.txt_snsContext.TabIndex = 16;
- //
- // label40
- //
- this.label40.AutoSize = true;
- this.label40.Location = new System.Drawing.Point(401, 154);
- this.label40.Name = "label40";
- this.label40.Size = new System.Drawing.Size(82, 15);
- this.label40.TabIndex = 15;
- this.label40.Text = "评论内容:";
- //
- // button34
- //
- this.button34.Location = new System.Drawing.Point(646, 125);
- this.button34.Name = "button34";
- this.button34.Size = new System.Drawing.Size(113, 25);
- this.button34.TabIndex = 14;
- this.button34.Text = "朋友圈评论";
- this.button34.UseVisualStyleBackColor = true;
- this.button34.Click += new System.EventHandler(this.button34_Click);
- //
- // txt_snsPlId
- //
- this.txt_snsPlId.Location = new System.Drawing.Point(489, 108);
- this.txt_snsPlId.Name = "txt_snsPlId";
- this.txt_snsPlId.Size = new System.Drawing.Size(151, 25);
- this.txt_snsPlId.TabIndex = 13;
- //
- // label39
- //
- this.label39.AutoSize = true;
- this.label39.Location = new System.Drawing.Point(430, 111);
- this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(68, 15);
- this.label39.TabIndex = 12;
- this.label39.Text = "评论id:";
- //
- // button33
- //
- this.button33.Location = new System.Drawing.Point(647, 60);
- this.button33.Name = "button33";
- this.button33.Size = new System.Drawing.Size(112, 25);
- this.button33.TabIndex = 11;
- this.button33.Text = "获取朋友圈";
- this.button33.UseVisualStyleBackColor = true;
- this.button33.Click += new System.EventHandler(this.button33_Click);
- //
- // txt_snsId
- //
- this.txt_snsId.Location = new System.Drawing.Point(489, 60);
- this.txt_snsId.Name = "txt_snsId";
- this.txt_snsId.Size = new System.Drawing.Size(151, 25);
- this.txt_snsId.TabIndex = 10;
- //
- // label38
- //
- this.label38.AutoSize = true;
- this.label38.Location = new System.Drawing.Point(430, 63);
- this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(62, 15);
- this.label38.TabIndex = 9;
- this.label38.Text = "snsid:";
- //
- // button32
- //
- this.button32.Location = new System.Drawing.Point(646, 16);
- this.button32.Name = "button32";
- this.button32.Size = new System.Drawing.Size(113, 26);
- this.button32.TabIndex = 8;
- this.button32.Text = "查看朋友圈";
- this.button32.UseVisualStyleBackColor = true;
- this.button32.Click += new System.EventHandler(this.button32_Click);
- //
- // txt_snswxid
- //
- this.txt_snswxid.Location = new System.Drawing.Point(489, 16);
- this.txt_snswxid.Name = "txt_snswxid";
- this.txt_snswxid.Size = new System.Drawing.Size(151, 25);
- this.txt_snswxid.TabIndex = 7;
- //
- // label37
- //
- this.label37.AutoSize = true;
- this.label37.Location = new System.Drawing.Point(438, 19);
- this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(54, 15);
- this.label37.TabIndex = 6;
- this.label37.Text = "wxid:";
- //
- // button5
- //
- this.button5.Location = new System.Drawing.Point(275, 71);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(129, 31);
- this.button5.TabIndex = 5;
- this.button5.Text = "添加图片";
- this.button5.UseVisualStyleBackColor = true;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // listBox1
- //
- this.listBox1.FormattingEnabled = true;
- this.listBox1.ItemHeight = 15;
- this.listBox1.Location = new System.Drawing.Point(23, 71);
- this.listBox1.Name = "listBox1";
- this.listBox1.Size = new System.Drawing.Size(227, 274);
- this.listBox1.TabIndex = 4;
- //
- // button4
- //
- this.button4.Location = new System.Drawing.Point(275, 108);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(129, 31);
- this.button4.TabIndex = 3;
- this.button4.Text = "图文朋友圈";
- this.button4.UseVisualStyleBackColor = true;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.Location = new System.Drawing.Point(275, 11);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(129, 31);
- this.button3.TabIndex = 2;
- this.button3.Text = "文字朋友圈";
- this.button3.UseVisualStyleBackColor = true;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // txt_snsText
- //
- this.txt_snsText.Location = new System.Drawing.Point(78, 16);
- this.txt_snsText.Name = "txt_snsText";
- this.txt_snsText.Size = new System.Drawing.Size(160, 25);
- this.txt_snsText.TabIndex = 1;
- this.txt_snsText.Text = "发送一次朋友圈子,你们平时看不到我的芳容骚貌";
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(20, 19);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(52, 15);
- this.label4.TabIndex = 0;
- this.label4.Text = "文字:";
- //
- // tabPage3
- //
- this.tabPage3.Controls.Add(this.button37);
- this.tabPage3.Controls.Add(this.button36);
- this.tabPage3.Controls.Add(this.txt_friendRemark);
- this.tabPage3.Controls.Add(this.label41);
- this.tabPage3.Controls.Add(this.button35);
- this.tabPage3.Controls.Add(this.txt_friendwxid);
- this.tabPage3.Controls.Add(this.label6);
- this.tabPage3.Controls.Add(this.lb_friend);
- this.tabPage3.Controls.Add(this.label5);
- this.tabPage3.Location = new System.Drawing.Point(4, 25);
- this.tabPage3.Name = "tabPage3";
- this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage3.Size = new System.Drawing.Size(765, 396);
- this.tabPage3.TabIndex = 2;
- this.tabPage3.Text = "好友模块";
- this.tabPage3.UseVisualStyleBackColor = true;
- //
- // button37
- //
- this.button37.Location = new System.Drawing.Point(621, 113);
- this.button37.Name = "button37";
- this.button37.Size = new System.Drawing.Size(94, 30);
- this.button37.TabIndex = 9;
- this.button37.Text = "删除好友";
- this.button37.UseVisualStyleBackColor = true;
- this.button37.Click += new System.EventHandler(this.button37_Click);
- //
- // button36
- //
- this.button36.Location = new System.Drawing.Point(621, 68);
- this.button36.Name = "button36";
- this.button36.Size = new System.Drawing.Size(94, 25);
- this.button36.TabIndex = 8;
- this.button36.Text = "修改备注";
- this.button36.UseVisualStyleBackColor = true;
- this.button36.Click += new System.EventHandler(this.button36_Click);
- //
- // txt_friendRemark
- //
- this.txt_friendRemark.Location = new System.Drawing.Point(439, 68);
- this.txt_friendRemark.Name = "txt_friendRemark";
- this.txt_friendRemark.Size = new System.Drawing.Size(166, 25);
- this.txt_friendRemark.TabIndex = 7;
- //
- // label41
- //
- this.label41.AutoSize = true;
- this.label41.Location = new System.Drawing.Point(388, 78);
- this.label41.Name = "label41";
- this.label41.Size = new System.Drawing.Size(52, 15);
- this.label41.TabIndex = 6;
- this.label41.Text = "备注:";
- //
- // button35
- //
- this.button35.Location = new System.Drawing.Point(621, 19);
- this.button35.Name = "button35";
- this.button35.Size = new System.Drawing.Size(94, 29);
- this.button35.TabIndex = 5;
- this.button35.Text = "获取详情";
- this.button35.UseVisualStyleBackColor = true;
- this.button35.Click += new System.EventHandler(this.button35_Click);
- //
- // txt_friendwxid
- //
- this.txt_friendwxid.Location = new System.Drawing.Point(439, 19);
- this.txt_friendwxid.Name = "txt_friendwxid";
- this.txt_friendwxid.Size = new System.Drawing.Size(166, 25);
- this.txt_friendwxid.TabIndex = 4;
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(385, 19);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(47, 15);
- this.label6.TabIndex = 3;
- this.label6.Text = "wxid:";
- //
- // lb_friend
- //
- this.lb_friend.FormattingEnabled = true;
- this.lb_friend.ItemHeight = 15;
- this.lb_friend.Location = new System.Drawing.Point(26, 58);
- this.lb_friend.Name = "lb_friend";
- this.lb_friend.Size = new System.Drawing.Size(325, 319);
- this.lb_friend.TabIndex = 2;
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(23, 19);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(52, 15);
- this.label5.TabIndex = 0;
- this.label5.Text = "好友:";
- //
- // tabPage4
- //
- this.tabPage4.Controls.Add(this.button39);
- this.tabPage4.Controls.Add(this.button38);
- this.tabPage4.Controls.Add(this.lb_group);
- this.tabPage4.Controls.Add(this.label29);
- this.tabPage4.Controls.Add(this.button11);
- this.tabPage4.Controls.Add(this.button10);
- this.tabPage4.Controls.Add(this.txt_groupgg);
- this.tabPage4.Controls.Add(this.label10);
- this.tabPage4.Controls.Add(this.button9);
- this.tabPage4.Controls.Add(this.txt_groupname);
- this.tabPage4.Controls.Add(this.label11);
- this.tabPage4.Controls.Add(this.button8);
- this.tabPage4.Controls.Add(this.txt_groupwxid);
- this.tabPage4.Controls.Add(this.label9);
- this.tabPage4.Controls.Add(this.button7);
- this.tabPage4.Controls.Add(this.txt_groupuserwxid);
- this.tabPage4.Controls.Add(this.label8);
- this.tabPage4.Controls.Add(this.button6);
- this.tabPage4.Controls.Add(this.txt_GroupUsers);
- this.tabPage4.Controls.Add(this.label7);
- this.tabPage4.Location = new System.Drawing.Point(4, 25);
- this.tabPage4.Name = "tabPage4";
- this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage4.Size = new System.Drawing.Size(765, 396);
- this.tabPage4.TabIndex = 3;
- this.tabPage4.Text = "群模块";
- this.tabPage4.UseVisualStyleBackColor = true;
- //
- // button39
- //
- this.button39.Location = new System.Drawing.Point(445, 67);
- this.button39.Name = "button39";
- this.button39.Size = new System.Drawing.Size(148, 25);
- this.button39.TabIndex = 20;
- this.button39.Text = "获取群成员资料";
- this.button39.UseVisualStyleBackColor = true;
- this.button39.Click += new System.EventHandler(this.button39_Click);
- //
- // button38
- //
- this.button38.Location = new System.Drawing.Point(393, 108);
- this.button38.Name = "button38";
- this.button38.Size = new System.Drawing.Size(124, 25);
- this.button38.TabIndex = 19;
- this.button38.Text = "邀请群成员";
- this.button38.UseVisualStyleBackColor = true;
- this.button38.Click += new System.EventHandler(this.button38_Click);
- //
- // lb_group
- //
- this.lb_group.FormattingEnabled = true;
- this.lb_group.ItemHeight = 15;
- this.lb_group.Location = new System.Drawing.Point(6, 247);
- this.lb_group.Name = "lb_group";
- this.lb_group.Size = new System.Drawing.Size(753, 139);
- this.lb_group.TabIndex = 18;
- //
- // label29
- //
- this.label29.AutoSize = true;
- this.label29.Location = new System.Drawing.Point(442, 18);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(272, 15);
- this.label29.TabIndex = 16;
- this.label29.Text = "需要传自己和好友的wxid,且不少于3人";
- //
- // button11
- //
- this.button11.Location = new System.Drawing.Point(341, 67);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(89, 25);
- this.button11.TabIndex = 15;
- this.button11.Text = "退出群";
- this.button11.UseVisualStyleBackColor = true;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button10
- //
- this.button10.Location = new System.Drawing.Point(270, 200);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(104, 25);
- this.button10.TabIndex = 14;
- this.button10.Text = "修改群公告";
- this.button10.UseVisualStyleBackColor = true;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // txt_groupgg
- //
- this.txt_groupgg.Location = new System.Drawing.Point(109, 200);
- this.txt_groupgg.Name = "txt_groupgg";
- this.txt_groupgg.Size = new System.Drawing.Size(146, 25);
- this.txt_groupgg.TabIndex = 13;
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(36, 210);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(67, 15);
- this.label10.TabIndex = 12;
- this.label10.Text = "群公告:";
- //
- // button9
- //
- this.button9.Location = new System.Drawing.Point(270, 157);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(104, 25);
- this.button9.TabIndex = 11;
- this.button9.Text = "修改群名称";
- this.button9.UseVisualStyleBackColor = true;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // txt_groupname
- //
- this.txt_groupname.Location = new System.Drawing.Point(109, 157);
- this.txt_groupname.Name = "txt_groupname";
- this.txt_groupname.Size = new System.Drawing.Size(146, 25);
- this.txt_groupname.TabIndex = 10;
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(36, 167);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(67, 15);
- this.label11.TabIndex = 9;
- this.label11.Text = "群名称:";
- //
- // button8
- //
- this.button8.Location = new System.Drawing.Point(539, 106);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(114, 25);
- this.button8.TabIndex = 8;
- this.button8.Text = "踢出群成员";
- this.button8.UseVisualStyleBackColor = true;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // txt_groupwxid
- //
- this.txt_groupwxid.Location = new System.Drawing.Point(109, 67);
- this.txt_groupwxid.Name = "txt_groupwxid";
- this.txt_groupwxid.Size = new System.Drawing.Size(205, 25);
- this.txt_groupwxid.TabIndex = 7;
- this.txt_groupwxid.Text = "222@chatroom";
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(26, 77);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(46, 15);
- this.label9.TabIndex = 6;
- this.label9.Text = "群id:";
- //
- // button7
- //
- this.button7.Location = new System.Drawing.Point(270, 108);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(104, 25);
- this.button7.TabIndex = 5;
- this.button7.Text = "添加群成员";
- this.button7.UseVisualStyleBackColor = true;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // txt_groupuserwxid
- //
- this.txt_groupuserwxid.Location = new System.Drawing.Point(109, 108);
- this.txt_groupuserwxid.Name = "txt_groupuserwxid";
- this.txt_groupuserwxid.Size = new System.Drawing.Size(146, 25);
- this.txt_groupuserwxid.TabIndex = 4;
- this.txt_groupuserwxid.Text = "wxid_111";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(26, 118);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(77, 15);
- this.label8.TabIndex = 3;
- this.label8.Text = "好友wxid:";
- //
- // button6
- //
- this.button6.Location = new System.Drawing.Point(341, 14);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(84, 29);
- this.button6.TabIndex = 2;
- this.button6.Text = "创建群";
- this.button6.UseVisualStyleBackColor = true;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // txt_GroupUsers
- //
- this.txt_GroupUsers.Location = new System.Drawing.Point(109, 18);
- this.txt_GroupUsers.Name = "txt_GroupUsers";
- this.txt_GroupUsers.Size = new System.Drawing.Size(205, 25);
- this.txt_GroupUsers.TabIndex = 1;
- this.txt_GroupUsers.Text = "[\"wxid_aaa\",\"wxid_bbb\"]";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(26, 21);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(77, 15);
- this.label7.TabIndex = 0;
- this.label7.Text = "好友wxid:";
- //
- // tabPage5
- //
- this.tabPage5.Controls.Add(this.button20);
- this.tabPage5.Controls.Add(this.button19);
- this.tabPage5.Controls.Add(this.button18);
- this.tabPage5.Controls.Add(this.button13);
- this.tabPage5.Controls.Add(this.button12);
- this.tabPage5.Controls.Add(this.txt_loginToken);
- this.tabPage5.Controls.Add(this.label15);
- this.tabPage5.Controls.Add(this.txt_login62);
- this.tabPage5.Controls.Add(this.label14);
- this.tabPage5.Controls.Add(this.txt_loginPassword);
- this.tabPage5.Controls.Add(this.label13);
- this.tabPage5.Controls.Add(this.txt_loginName);
- this.tabPage5.Controls.Add(this.label12);
- this.tabPage5.Location = new System.Drawing.Point(4, 25);
- this.tabPage5.Name = "tabPage5";
- this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage5.Size = new System.Drawing.Size(765, 396);
- this.tabPage5.TabIndex = 4;
- this.tabPage5.Text = "二次登陆";
- this.tabPage5.UseVisualStyleBackColor = true;
- //
- // button20
- //
- this.button20.Location = new System.Drawing.Point(359, 271);
- this.button20.Name = "button20";
- this.button20.Size = new System.Drawing.Size(124, 35);
- this.button20.TabIndex = 12;
- this.button20.Text = "断线重连";
- this.button20.UseVisualStyleBackColor = true;
- this.button20.Click += new System.EventHandler(this.button20_Click);
- //
- // button19
- //
- this.button19.Location = new System.Drawing.Point(359, 210);
- this.button19.Name = "button19";
- this.button19.Size = new System.Drawing.Size(167, 37);
- this.button19.TabIndex = 11;
- this.button19.Text = "扫码62token二次登录";
- this.button19.UseVisualStyleBackColor = true;
- this.button19.Click += new System.EventHandler(this.button19_Click);
- //
- // button18
- //
- this.button18.Location = new System.Drawing.Point(359, 149);
- this.button18.Name = "button18";
- this.button18.Size = new System.Drawing.Size(124, 37);
- this.button18.TabIndex = 10;
- this.button18.Text = "获取token";
- this.button18.UseVisualStyleBackColor = true;
- this.button18.Click += new System.EventHandler(this.button18_Click);
- //
- // button13
- //
- this.button13.Location = new System.Drawing.Point(359, 87);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(124, 38);
- this.button13.TabIndex = 9;
- this.button13.Text = "账号密码62登陆";
- this.button13.UseVisualStyleBackColor = true;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // button12
- //
- this.button12.Location = new System.Drawing.Point(359, 24);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(124, 39);
- this.button12.TabIndex = 8;
- this.button12.Text = "获取62数据";
- this.button12.UseVisualStyleBackColor = true;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // txt_loginToken
- //
- this.txt_loginToken.Location = new System.Drawing.Point(93, 194);
- this.txt_loginToken.Name = "txt_loginToken";
- this.txt_loginToken.Size = new System.Drawing.Size(179, 25);
- this.txt_loginToken.TabIndex = 7;
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Location = new System.Drawing.Point(19, 197);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(62, 15);
- this.label15.TabIndex = 6;
- this.label15.Text = "Token:";
- //
- // txt_login62
- //
- this.txt_login62.Location = new System.Drawing.Point(93, 135);
- this.txt_login62.Name = "txt_login62";
- this.txt_login62.Size = new System.Drawing.Size(179, 25);
- this.txt_login62.TabIndex = 5;
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(19, 138);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(68, 15);
- this.label14.TabIndex = 4;
- this.label14.Text = "62数据:";
- //
- // txt_loginPassword
- //
- this.txt_loginPassword.Location = new System.Drawing.Point(93, 78);
- this.txt_loginPassword.Name = "txt_loginPassword";
- this.txt_loginPassword.Size = new System.Drawing.Size(179, 25);
- this.txt_loginPassword.TabIndex = 3;
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(35, 81);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(52, 15);
- this.label13.TabIndex = 2;
- this.label13.Text = "密码:";
- //
- // txt_loginName
- //
- this.txt_loginName.Location = new System.Drawing.Point(93, 24);
- this.txt_loginName.Name = "txt_loginName";
- this.txt_loginName.Size = new System.Drawing.Size(179, 25);
- this.txt_loginName.TabIndex = 1;
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Location = new System.Drawing.Point(35, 27);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(52, 15);
- this.label12.TabIndex = 0;
- this.label12.Text = "账号:";
- //
- // tabPage6
- //
- this.tabPage6.Controls.Add(this.button16);
- this.tabPage6.Controls.Add(this.label21);
- this.tabPage6.Controls.Add(this.cb_addtype);
- this.tabPage6.Controls.Add(this.txt_hellotext);
- this.tabPage6.Controls.Add(this.label20);
- this.tabPage6.Controls.Add(this.txt_v2);
- this.tabPage6.Controls.Add(this.label19);
- this.tabPage6.Controls.Add(this.txt_v1);
- this.tabPage6.Controls.Add(this.label18);
- this.tabPage6.Controls.Add(this.txt_positionReturn);
- this.tabPage6.Controls.Add(this.button15);
- this.tabPage6.Controls.Add(this.txt_Lng);
- this.tabPage6.Controls.Add(this.label17);
- this.tabPage6.Controls.Add(this.txt_Lat);
- this.tabPage6.Controls.Add(this.label16);
- this.tabPage6.Location = new System.Drawing.Point(4, 25);
- this.tabPage6.Name = "tabPage6";
- this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage6.Size = new System.Drawing.Size(765, 396);
- this.tabPage6.TabIndex = 5;
- this.tabPage6.Text = "附近的人";
- this.tabPage6.UseVisualStyleBackColor = true;
- //
- // button16
- //
- this.button16.Location = new System.Drawing.Point(33, 295);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(90, 41);
- this.button16.TabIndex = 14;
- this.button16.Text = "添加";
- this.button16.UseVisualStyleBackColor = true;
- this.button16.Click += new System.EventHandler(this.button16_Click);
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Location = new System.Drawing.Point(353, 253);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(82, 15);
- this.label21.TabIndex = 13;
- this.label21.Text = "添加方式:";
- //
- // cb_addtype
- //
- this.cb_addtype.FormattingEnabled = true;
- this.cb_addtype.Items.AddRange(new object[] {
- "1-通过QQ好友添加--可以",
- "2-通过搜索邮箱--可加但无提示",
- "3-通过微信号搜索--可以",
- "5-通过朋友验证消息-可加但无提示",
- "7-通过朋友验证消息(可回复)-可加但无提示",
- "12-来自QQ好友--可以",
- "13-通过手机通讯录添加--可以",
- "14-通过群来源--no",
- "15-通过搜索手机号--可以",
- "16-通过朋友验证消息-可加但无提示",
- "17-通过名片分享--no",
- "18-通过附近的人--可以(貌似只需要v1就够了)",
- "22-通过摇一摇打招呼方式--可以",
- "25-通过漂流瓶---no",
- "30-通过二维码方式--可以"});
- this.cb_addtype.Location = new System.Drawing.Point(441, 252);
- this.cb_addtype.Name = "cb_addtype";
- this.cb_addtype.Size = new System.Drawing.Size(274, 23);
- this.cb_addtype.TabIndex = 12;
- //
- // txt_hellotext
- //
- this.txt_hellotext.Location = new System.Drawing.Point(92, 250);
- this.txt_hellotext.Name = "txt_hellotext";
- this.txt_hellotext.Size = new System.Drawing.Size(219, 25);
- this.txt_hellotext.TabIndex = 11;
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Location = new System.Drawing.Point(33, 253);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(67, 15);
- this.label20.TabIndex = 10;
- this.label20.Text = "打招呼:";
- //
- // txt_v2
- //
- this.txt_v2.Location = new System.Drawing.Point(92, 210);
- this.txt_v2.Name = "txt_v2";
- this.txt_v2.Size = new System.Drawing.Size(653, 25);
- this.txt_v2.TabIndex = 9;
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Location = new System.Drawing.Point(33, 213);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(38, 15);
- this.label19.TabIndex = 8;
- this.label19.Text = "v2:";
- //
- // txt_v1
- //
- this.txt_v1.Location = new System.Drawing.Point(92, 175);
- this.txt_v1.Name = "txt_v1";
- this.txt_v1.Size = new System.Drawing.Size(653, 25);
- this.txt_v1.TabIndex = 7;
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Location = new System.Drawing.Point(33, 178);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(38, 15);
- this.label18.TabIndex = 6;
- this.label18.Text = "v1:";
- //
- // txt_positionReturn
- //
- this.txt_positionReturn.Location = new System.Drawing.Point(33, 60);
- this.txt_positionReturn.Multiline = true;
- this.txt_positionReturn.Name = "txt_positionReturn";
- this.txt_positionReturn.Size = new System.Drawing.Size(712, 100);
- this.txt_positionReturn.TabIndex = 5;
- //
- // button15
- //
- this.button15.Location = new System.Drawing.Point(441, 18);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(142, 26);
- this.button15.TabIndex = 4;
- this.button15.Text = "查看附近的人";
- this.button15.UseVisualStyleBackColor = true;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- //
- // txt_Lng
- //
- this.txt_Lng.Location = new System.Drawing.Point(283, 18);
- this.txt_Lng.Name = "txt_Lng";
- this.txt_Lng.Size = new System.Drawing.Size(100, 25);
- this.txt_Lng.TabIndex = 3;
- this.txt_Lng.Text = "118.538361";
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Location = new System.Drawing.Point(227, 19);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(39, 15);
- this.label17.TabIndex = 2;
- this.label17.Text = "Lng:";
- //
- // txt_Lat
- //
- this.txt_Lat.Location = new System.Drawing.Point(92, 19);
- this.txt_Lat.Name = "txt_Lat";
- this.txt_Lat.Size = new System.Drawing.Size(100, 25);
- this.txt_Lat.TabIndex = 1;
- this.txt_Lat.Text = "24.911349";
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Location = new System.Drawing.Point(30, 19);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(39, 15);
- this.label16.TabIndex = 0;
- this.label16.Text = "Lat:";
- //
- // tabPage8
- //
- this.tabPage8.Controls.Add(this.button40);
- this.tabPage8.Controls.Add(this.txt_gzhKey);
- this.tabPage8.Controls.Add(this.label43);
- this.tabPage8.Controls.Add(this.txt_gzhUin);
- this.tabPage8.Controls.Add(this.label42);
- this.tabPage8.Controls.Add(this.lb_gzh);
- this.tabPage8.Controls.Add(this.button22);
- this.tabPage8.Controls.Add(this.txt_gzhlog);
- this.tabPage8.Controls.Add(this.button21);
- this.tabPage8.Controls.Add(this.txt_gzhid);
- this.tabPage8.Controls.Add(this.label22);
- this.tabPage8.Location = new System.Drawing.Point(4, 25);
- this.tabPage8.Name = "tabPage8";
- this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage8.Size = new System.Drawing.Size(765, 396);
- this.tabPage8.TabIndex = 7;
- this.tabPage8.Text = "公众号";
- this.tabPage8.UseVisualStyleBackColor = true;
- //
- // button40
- //
- this.button40.Location = new System.Drawing.Point(375, 154);
- this.button40.Name = "button40";
- this.button40.Size = new System.Drawing.Size(138, 39);
- this.button40.TabIndex = 10;
- this.button40.Text = "执行公众号菜单";
- this.button40.UseVisualStyleBackColor = true;
- this.button40.Click += new System.EventHandler(this.button40_Click);
- //
- // txt_gzhKey
- //
- this.txt_gzhKey.Location = new System.Drawing.Point(375, 110);
- this.txt_gzhKey.Name = "txt_gzhKey";
- this.txt_gzhKey.Size = new System.Drawing.Size(198, 25);
- this.txt_gzhKey.TabIndex = 9;
- //
- // label43
- //
- this.label43.AutoSize = true;
- this.label43.Location = new System.Drawing.Point(322, 113);
- this.label43.Name = "label43";
- this.label43.Size = new System.Drawing.Size(47, 15);
- this.label43.TabIndex = 8;
- this.label43.Text = "key: ";
- //
- // txt_gzhUin
- //
- this.txt_gzhUin.Location = new System.Drawing.Point(375, 62);
- this.txt_gzhUin.Name = "txt_gzhUin";
- this.txt_gzhUin.Size = new System.Drawing.Size(198, 25);
- this.txt_gzhUin.TabIndex = 7;
- //
- // label42
- //
- this.label42.AutoSize = true;
- this.label42.Location = new System.Drawing.Point(322, 65);
- this.label42.Name = "label42";
- this.label42.Size = new System.Drawing.Size(47, 15);
- this.label42.TabIndex = 6;
- this.label42.Text = "uin: ";
- //
- // lb_gzh
- //
- this.lb_gzh.FormattingEnabled = true;
- this.lb_gzh.ItemHeight = 15;
- this.lb_gzh.Location = new System.Drawing.Point(26, 46);
- this.lb_gzh.Name = "lb_gzh";
- this.lb_gzh.Size = new System.Drawing.Size(229, 199);
- this.lb_gzh.TabIndex = 5;
- //
- // button22
- //
- this.button22.Location = new System.Drawing.Point(541, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(121, 23);
- this.button22.TabIndex = 4;
- this.button22.Text = "获取公众号内容";
- this.button22.UseVisualStyleBackColor = true;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- //
- // txt_gzhlog
- //
- this.txt_gzhlog.Location = new System.Drawing.Point(6, 257);
- this.txt_gzhlog.Multiline = true;
- this.txt_gzhlog.Name = "txt_gzhlog";
- this.txt_gzhlog.Size = new System.Drawing.Size(753, 133);
- this.txt_gzhlog.TabIndex = 3;
- //
- // button21
- //
- this.button21.Location = new System.Drawing.Point(422, 15);
- this.button21.Name = "button21";
- this.button21.Size = new System.Drawing.Size(112, 24);
- this.button21.TabIndex = 2;
- this.button21.Text = "关注公众号";
- this.button21.UseVisualStyleBackColor = true;
- this.button21.Click += new System.EventHandler(this.button21_Click);
- //
- // txt_gzhid
- //
- this.txt_gzhid.Location = new System.Drawing.Point(197, 14);
- this.txt_gzhid.Name = "txt_gzhid";
- this.txt_gzhid.Size = new System.Drawing.Size(198, 25);
- this.txt_gzhid.TabIndex = 1;
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Location = new System.Drawing.Point(23, 17);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(156, 15);
- this.label22.TabIndex = 0;
- this.label22.Text = "公众号id: gh_xxxxxx";
- //
- // tabPage7
- //
- this.tabPage7.Controls.Add(this.txt_msgcallback);
- this.tabPage7.Location = new System.Drawing.Point(4, 25);
- this.tabPage7.Name = "tabPage7";
- this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage7.Size = new System.Drawing.Size(765, 396);
- this.tabPage7.TabIndex = 8;
- this.tabPage7.Text = "收消息回调";
- this.tabPage7.UseVisualStyleBackColor = true;
- //
- // txt_msgcallback
- //
- this.txt_msgcallback.Location = new System.Drawing.Point(6, 6);
- this.txt_msgcallback.Multiline = true;
- this.txt_msgcallback.Name = "txt_msgcallback";
- this.txt_msgcallback.Size = new System.Drawing.Size(753, 384);
- this.txt_msgcallback.TabIndex = 0;
- //
- // tabPage9
- //
- this.tabPage9.Controls.Add(this.button28);
- this.tabPage9.Controls.Add(this.txt_labelId1);
- this.tabPage9.Controls.Add(this.label33);
- this.tabPage9.Controls.Add(this.button27);
- this.tabPage9.Controls.Add(this.txt_labelName);
- this.tabPage9.Controls.Add(this.label32);
- this.tabPage9.Controls.Add(this.button26);
- this.tabPage9.Controls.Add(this.txt_labelId);
- this.tabPage9.Controls.Add(this.label31);
- this.tabPage9.Controls.Add(this.txt_labelWxid);
- this.tabPage9.Controls.Add(this.label30);
- this.tabPage9.Controls.Add(this.txt_labelList);
- this.tabPage9.Controls.Add(this.button25);
- this.tabPage9.Location = new System.Drawing.Point(4, 25);
- this.tabPage9.Name = "tabPage9";
- this.tabPage9.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage9.Size = new System.Drawing.Size(765, 396);
- this.tabPage9.TabIndex = 9;
- this.tabPage9.Text = "用户标签";
- this.tabPage9.UseVisualStyleBackColor = true;
- //
- // button28
- //
- this.button28.Location = new System.Drawing.Point(479, 112);
- this.button28.Name = "button28";
- this.button28.Size = new System.Drawing.Size(95, 25);
- this.button28.TabIndex = 12;
- this.button28.Text = "删除标签";
- this.button28.UseVisualStyleBackColor = true;
- this.button28.Click += new System.EventHandler(this.button28_Click);
- //
- // txt_labelId1
- //
- this.txt_labelId1.Location = new System.Drawing.Point(322, 112);
- this.txt_labelId1.Name = "txt_labelId1";
- this.txt_labelId1.Size = new System.Drawing.Size(136, 25);
- this.txt_labelId1.TabIndex = 11;
- //
- // label33
- //
- this.label33.AutoSize = true;
- this.label33.Location = new System.Drawing.Point(255, 119);
- this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(61, 15);
- this.label33.TabIndex = 10;
- this.label33.Text = "标签id:";
- //
- // button27
- //
- this.button27.Location = new System.Drawing.Point(542, 63);
- this.button27.Name = "button27";
- this.button27.Size = new System.Drawing.Size(94, 27);
- this.button27.TabIndex = 9;
- this.button27.Text = "创建标签";
- this.button27.UseVisualStyleBackColor = true;
- this.button27.Click += new System.EventHandler(this.button27_Click);
- //
- // txt_labelName
- //
- this.txt_labelName.Location = new System.Drawing.Point(322, 65);
- this.txt_labelName.Name = "txt_labelName";
- this.txt_labelName.Size = new System.Drawing.Size(194, 25);
- this.txt_labelName.TabIndex = 8;
- //
- // label32
- //
- this.label32.AutoSize = true;
- this.label32.Location = new System.Drawing.Point(249, 68);
- this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(67, 15);
- this.label32.TabIndex = 7;
- this.label32.Text = "标签名:";
- //
- // button26
- //
- this.button26.Location = new System.Drawing.Point(664, 19);
- this.button26.Name = "button26";
- this.button26.Size = new System.Drawing.Size(75, 27);
- this.button26.TabIndex = 6;
- this.button26.Text = "设置标签";
- this.button26.UseVisualStyleBackColor = true;
- this.button26.Click += new System.EventHandler(this.button26_Click);
- //
- // txt_labelId
- //
- this.txt_labelId.Location = new System.Drawing.Point(521, 21);
- this.txt_labelId.Name = "txt_labelId";
- this.txt_labelId.Size = new System.Drawing.Size(136, 25);
- this.txt_labelId.TabIndex = 5;
- //
- // label31
- //
- this.label31.AutoSize = true;
- this.label31.Location = new System.Drawing.Point(454, 28);
- this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(61, 15);
- this.label31.TabIndex = 4;
- this.label31.Text = "标签id:";
- //
- // txt_labelWxid
- //
- this.txt_labelWxid.Location = new System.Drawing.Point(300, 21);
- this.txt_labelWxid.Name = "txt_labelWxid";
- this.txt_labelWxid.Size = new System.Drawing.Size(136, 25);
- this.txt_labelWxid.TabIndex = 3;
- //
- // label30
- //
- this.label30.AutoSize = true;
- this.label30.Location = new System.Drawing.Point(246, 28);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(47, 15);
- this.label30.TabIndex = 2;
- this.label30.Text = "wxid:";
- //
- // txt_labelList
- //
- this.txt_labelList.Location = new System.Drawing.Point(24, 68);
- this.txt_labelList.Multiline = true;
- this.txt_labelList.Name = "txt_labelList";
- this.txt_labelList.Size = new System.Drawing.Size(198, 307);
- this.txt_labelList.TabIndex = 1;
- //
- // button25
- //
- this.button25.Location = new System.Drawing.Point(24, 21);
- this.button25.Name = "button25";
- this.button25.Size = new System.Drawing.Size(127, 29);
- this.button25.TabIndex = 0;
- this.button25.Text = "获取标签列表";
- this.button25.UseVisualStyleBackColor = true;
- this.button25.Click += new System.EventHandler(this.button25_Click);
- //
- // tabPage10
- //
- this.tabPage10.Controls.Add(this.txt_favItem);
- this.tabPage10.Controls.Add(this.txt_favId);
- this.tabPage10.Controls.Add(this.label36);
- this.tabPage10.Controls.Add(this.button31);
- this.tabPage10.Controls.Add(this.txt_favObject);
- this.tabPage10.Controls.Add(this.label35);
- this.tabPage10.Controls.Add(this.button30);
- this.tabPage10.Controls.Add(this.txt_favKey);
- this.tabPage10.Controls.Add(this.label34);
- this.tabPage10.Controls.Add(this.button29);
- this.tabPage10.Location = new System.Drawing.Point(4, 25);
- this.tabPage10.Name = "tabPage10";
- this.tabPage10.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage10.Size = new System.Drawing.Size(765, 396);
- this.tabPage10.TabIndex = 10;
- this.tabPage10.Text = "收藏";
- this.tabPage10.UseVisualStyleBackColor = true;
- //
- // txt_favItem
- //
- this.txt_favItem.Location = new System.Drawing.Point(6, 175);
- this.txt_favItem.Multiline = true;
- this.txt_favItem.Name = "txt_favItem";
- this.txt_favItem.Size = new System.Drawing.Size(753, 212);
- this.txt_favItem.TabIndex = 9;
- //
- // txt_favId
- //
- this.txt_favId.Location = new System.Drawing.Point(233, 121);
- this.txt_favId.Name = "txt_favId";
- this.txt_favId.Size = new System.Drawing.Size(138, 25);
- this.txt_favId.TabIndex = 8;
- //
- // label36
- //
- this.label36.AutoSize = true;
- this.label36.Location = new System.Drawing.Point(140, 124);
- this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(68, 15);
- this.label36.TabIndex = 7;
- this.label36.Text = "收藏id:";
- //
- // button31
- //
- this.button31.Location = new System.Drawing.Point(19, 114);
- this.button31.Name = "button31";
- this.button31.Size = new System.Drawing.Size(87, 34);
- this.button31.TabIndex = 6;
- this.button31.Text = "查看收藏";
- this.button31.UseVisualStyleBackColor = true;
- this.button31.Click += new System.EventHandler(this.button31_Click);
- //
- // txt_favObject
- //
- this.txt_favObject.Location = new System.Drawing.Point(233, 65);
- this.txt_favObject.Name = "txt_favObject";
- this.txt_favObject.Size = new System.Drawing.Size(512, 25);
- this.txt_favObject.TabIndex = 5;
- this.txt_favObject.Text = resources.GetString("txt_favObject.Text");
- //
- // label35
- //
- this.label35.AutoSize = true;
- this.label35.Location = new System.Drawing.Point(140, 70);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(76, 15);
- this.label35.TabIndex = 4;
- this.label35.Text = "收藏key:";
- //
- // button30
- //
- this.button30.Location = new System.Drawing.Point(19, 65);
- this.button30.Name = "button30";
- this.button30.Size = new System.Drawing.Size(87, 31);
- this.button30.TabIndex = 3;
- this.button30.Text = "添加收藏";
- this.button30.UseVisualStyleBackColor = true;
- this.button30.Click += new System.EventHandler(this.button30_Click);
- //
- // txt_favKey
- //
- this.txt_favKey.Location = new System.Drawing.Point(233, 19);
- this.txt_favKey.Name = "txt_favKey";
- this.txt_favKey.Size = new System.Drawing.Size(138, 25);
- this.txt_favKey.TabIndex = 2;
- //
- // label34
- //
- this.label34.AutoSize = true;
- this.label34.Location = new System.Drawing.Point(140, 24);
- this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(76, 15);
- this.label34.TabIndex = 1;
- this.label34.Text = "收藏key:";
- //
- // button29
- //
- this.button29.Location = new System.Drawing.Point(19, 17);
- this.button29.Name = "button29";
- this.button29.Size = new System.Drawing.Size(87, 28);
- this.button29.TabIndex = 0;
- this.button29.Text = "同步收藏";
- this.button29.UseVisualStyleBackColor = true;
- this.button29.Click += new System.EventHandler(this.button29_Click);
- //
- // button14
- //
- this.button14.Location = new System.Drawing.Point(12, 390);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(106, 44);
- this.button14.TabIndex = 4;
- this.button14.Text = "扫码登录";
- this.button14.UseVisualStyleBackColor = true;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // tabPage11
- //
- this.tabPage11.Controls.Add(this.button41);
- this.tabPage11.Controls.Add(this.label44);
- this.tabPage11.Controls.Add(this.txt_setWxid);
- this.tabPage11.Location = new System.Drawing.Point(4, 25);
- this.tabPage11.Name = "tabPage11";
- this.tabPage11.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage11.Size = new System.Drawing.Size(765, 396);
- this.tabPage11.TabIndex = 11;
- this.tabPage11.Text = "个人信息";
- this.tabPage11.UseVisualStyleBackColor = true;
- //
- // txt_setWxid
- //
- this.txt_setWxid.Location = new System.Drawing.Point(123, 25);
- this.txt_setWxid.Name = "txt_setWxid";
- this.txt_setWxid.Size = new System.Drawing.Size(220, 25);
- this.txt_setWxid.TabIndex = 0;
- //
- // label44
- //
- this.label44.AutoSize = true;
- this.label44.Location = new System.Drawing.Point(22, 28);
- this.label44.Name = "label44";
- this.label44.Size = new System.Drawing.Size(98, 15);
- this.label44.TabIndex = 1;
- this.label44.Text = "设置微信id:";
- //
- // button41
- //
- this.button41.Location = new System.Drawing.Point(358, 24);
- this.button41.Name = "button41";
- this.button41.Size = new System.Drawing.Size(95, 26);
- this.button41.TabIndex = 2;
- this.button41.Text = "设置";
- this.button41.UseVisualStyleBackColor = true;
- this.button41.Click += new System.EventHandler(this.button41_Click);
- //
- // tabPage12
- //
- this.tabPage12.Controls.Add(this.button44);
- this.tabPage12.Controls.Add(this.button43);
- this.tabPage12.Controls.Add(this.txt_orderUrl);
- this.tabPage12.Controls.Add(this.label46);
- this.tabPage12.Controls.Add(this.label45);
- this.tabPage12.Controls.Add(this.txt_qrcodeLog);
- this.tabPage12.Controls.Add(this.button42);
- this.tabPage12.Location = new System.Drawing.Point(4, 25);
- this.tabPage12.Name = "tabPage12";
- this.tabPage12.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage12.Size = new System.Drawing.Size(765, 396);
- this.tabPage12.TabIndex = 12;
- this.tabPage12.Text = "其他设备登录";
- this.tabPage12.UseVisualStyleBackColor = true;
- //
- // button42
- //
- this.button42.Location = new System.Drawing.Point(21, 16);
- this.button42.Name = "button42";
- this.button42.Size = new System.Drawing.Size(145, 36);
- this.button42.TabIndex = 0;
- this.button42.Text = "获取二维码信息";
- this.button42.UseVisualStyleBackColor = true;
- this.button42.Click += new System.EventHandler(this.button42_Click);
- //
- // txt_qrcodeLog
- //
- this.txt_qrcodeLog.Location = new System.Drawing.Point(7, 198);
- this.txt_qrcodeLog.Multiline = true;
- this.txt_qrcodeLog.Name = "txt_qrcodeLog";
- this.txt_qrcodeLog.Size = new System.Drawing.Size(752, 192);
- this.txt_qrcodeLog.TabIndex = 1;
- //
- // label45
- //
- this.label45.AutoSize = true;
- this.label45.Location = new System.Drawing.Point(183, 27);
- this.label45.Name = "label45";
- this.label45.Size = new System.Drawing.Size(523, 15);
- this.label45.TabIndex = 2;
- this.label45.Text = "使用账号密码+62登录后 可以打开pc或web端的二维码获取URL后登录其他终端";
- //
- // label46
- //
- this.label46.AutoSize = true;
- this.label46.Location = new System.Drawing.Point(21, 74);
- this.label46.Name = "label46";
- this.label46.Size = new System.Drawing.Size(39, 15);
- this.label46.TabIndex = 3;
- this.label46.Text = "url:";
- //
- // txt_orderUrl
- //
- this.txt_orderUrl.Location = new System.Drawing.Point(66, 71);
- this.txt_orderUrl.Name = "txt_orderUrl";
- this.txt_orderUrl.Size = new System.Drawing.Size(319, 25);
- this.txt_orderUrl.TabIndex = 4;
- //
- // button43
- //
- this.button43.Location = new System.Drawing.Point(404, 70);
- this.button43.Name = "button43";
- this.button43.Size = new System.Drawing.Size(113, 35);
- this.button43.TabIndex = 5;
- this.button43.Text = "登录";
- this.button43.UseVisualStyleBackColor = true;
- this.button43.Click += new System.EventHandler(this.button43_Click);
- //
- // button44
- //
- this.button44.Location = new System.Drawing.Point(404, 124);
- this.button44.Name = "button44";
- this.button44.Size = new System.Drawing.Size(113, 36);
- this.button44.TabIndex = 6;
- this.button44.Text = "确认登录";
- this.button44.UseVisualStyleBackColor = true;
- this.button44.Click += new System.EventHandler(this.button44_Click);
- //
- // FormDemo
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1009, 454);
- this.Controls.Add(this.button14);
- this.Controls.Add(this.tabControl1);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.textBox1);
- this.Controls.Add(this.pictureBox1);
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "FormDemo";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Mac微信Demo";
- this.Load += new System.EventHandler(this.FormDemo_Load);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.tabControl1.ResumeLayout(false);
- this.tabPage1.ResumeLayout(false);
- this.tabPage1.PerformLayout();
- this.tabPage2.ResumeLayout(false);
- this.tabPage2.PerformLayout();
- this.tabPage3.ResumeLayout(false);
- this.tabPage3.PerformLayout();
- this.tabPage4.ResumeLayout(false);
- this.tabPage4.PerformLayout();
- this.tabPage5.ResumeLayout(false);
- this.tabPage5.PerformLayout();
- this.tabPage6.ResumeLayout(false);
- this.tabPage6.PerformLayout();
- this.tabPage8.ResumeLayout(false);
- this.tabPage8.PerformLayout();
- this.tabPage7.ResumeLayout(false);
- this.tabPage7.PerformLayout();
- this.tabPage9.ResumeLayout(false);
- this.tabPage9.PerformLayout();
- this.tabPage10.ResumeLayout(false);
- this.tabPage10.PerformLayout();
- this.tabPage11.ResumeLayout(false);
- this.tabPage11.PerformLayout();
- this.tabPage12.ResumeLayout(false);
- this.tabPage12.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TabControl tabControl1;
- private System.Windows.Forms.TabPage tabPage1;
- private System.Windows.Forms.TabPage tabPage2;
- private System.Windows.Forms.TextBox txt_msgWxid;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox txt_msgText;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.TextBox txt_snsText;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.ListBox listBox1;
- private System.Windows.Forms.TabPage tabPage3;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.ListBox lb_friend;
- private System.Windows.Forms.TabPage tabPage4;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.TextBox txt_GroupUsers;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.TextBox txt_groupuserwxid;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.TextBox txt_groupwxid;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.TextBox txt_groupname;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.TextBox txt_groupgg;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.TabPage tabPage5;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.TextBox txt_loginToken;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.TextBox txt_login62;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.TextBox txt_loginPassword;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.TextBox txt_loginName;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.TabPage tabPage6;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.TextBox txt_Lat;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.TextBox txt_Lng;
- private System.Windows.Forms.TextBox txt_positionReturn;
- private System.Windows.Forms.TextBox txt_v2;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.TextBox txt_v1;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.TextBox txt_hellotext;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.ComboBox cb_addtype;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Button button17;
- private System.Windows.Forms.Button button18;
- private System.Windows.Forms.Button button19;
- private System.Windows.Forms.Button button20;
- private System.Windows.Forms.TabPage tabPage8;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.Button button21;
- private System.Windows.Forms.TextBox txt_gzhid;
- private System.Windows.Forms.TextBox txt_gzhlog;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.ListBox lb_gzh;
- private System.Windows.Forms.Button button23;
- private System.Windows.Forms.TextBox txt_linkImgUrl;
- private System.Windows.Forms.Label label28;
- private System.Windows.Forms.TextBox txt_linkUrl;
- private System.Windows.Forms.Label label27;
- private System.Windows.Forms.TextBox txt_linkDesc;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.TextBox txt_linkSdkVer;
- private System.Windows.Forms.Label label25;
- private System.Windows.Forms.TextBox txt_linkAppId;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.TextBox txt_linkTitle;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.Button button24;
- private System.Windows.Forms.TabPage tabPage7;
- private System.Windows.Forms.TextBox txt_msgcallback;
- private System.Windows.Forms.Label label29;
- private System.Windows.Forms.TabPage tabPage9;
- private System.Windows.Forms.Button button25;
- private System.Windows.Forms.TextBox txt_labelList;
- private System.Windows.Forms.Button button26;
- private System.Windows.Forms.TextBox txt_labelId;
- private System.Windows.Forms.Label label31;
- private System.Windows.Forms.TextBox txt_labelWxid;
- private System.Windows.Forms.Label label30;
- private System.Windows.Forms.Button button27;
- private System.Windows.Forms.TextBox txt_labelName;
- private System.Windows.Forms.Label label32;
- private System.Windows.Forms.Button button28;
- private System.Windows.Forms.TextBox txt_labelId1;
- private System.Windows.Forms.Label label33;
- private System.Windows.Forms.TabPage tabPage10;
- private System.Windows.Forms.Button button29;
- private System.Windows.Forms.TextBox txt_favKey;
- private System.Windows.Forms.Label label34;
- private System.Windows.Forms.TextBox txt_favObject;
- private System.Windows.Forms.Label label35;
- private System.Windows.Forms.Button button30;
- private System.Windows.Forms.Button button31;
- private System.Windows.Forms.TextBox txt_favId;
- private System.Windows.Forms.Label label36;
- private System.Windows.Forms.TextBox txt_favItem;
- private System.Windows.Forms.TextBox txt_snswxid;
- private System.Windows.Forms.Label label37;
- private System.Windows.Forms.Button button32;
- private System.Windows.Forms.Button button33;
- private System.Windows.Forms.TextBox txt_snsId;
- private System.Windows.Forms.Label label38;
- private System.Windows.Forms.Button button34;
- private System.Windows.Forms.TextBox txt_snsPlId;
- private System.Windows.Forms.Label label39;
- private System.Windows.Forms.TextBox txt_snsContext;
- private System.Windows.Forms.Label label40;
- private System.Windows.Forms.ListBox lb_group;
- private System.Windows.Forms.TextBox txt_friendwxid;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button35;
- private System.Windows.Forms.Button button36;
- private System.Windows.Forms.TextBox txt_friendRemark;
- private System.Windows.Forms.Label label41;
- private System.Windows.Forms.Button button37;
- private System.Windows.Forms.Button button38;
- private System.Windows.Forms.Button button39;
- private System.Windows.Forms.TextBox txt_gzhKey;
- private System.Windows.Forms.Label label43;
- private System.Windows.Forms.TextBox txt_gzhUin;
- private System.Windows.Forms.Label label42;
- private System.Windows.Forms.Button button40;
- private System.Windows.Forms.TabPage tabPage11;
- private System.Windows.Forms.Button button41;
- private System.Windows.Forms.Label label44;
- private System.Windows.Forms.TextBox txt_setWxid;
- private System.Windows.Forms.TabPage tabPage12;
- private System.Windows.Forms.Button button42;
- private System.Windows.Forms.TextBox txt_qrcodeLog;
- private System.Windows.Forms.Button button43;
- private System.Windows.Forms.TextBox txt_orderUrl;
- private System.Windows.Forms.Label label46;
- private System.Windows.Forms.Label label45;
- private System.Windows.Forms.Button button44;
- }
- }
|