FormDemo.Designer.cs 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232
  1. namespace IPADDemo
  2. {
  3. partial class FormDemo
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormDemo));
  29. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.tabControl1 = new System.Windows.Forms.TabControl();
  33. this.tabPage1 = new System.Windows.Forms.TabPage();
  34. this.button49 = new System.Windows.Forms.Button();
  35. this.textBox2 = new System.Windows.Forms.TextBox();
  36. this.textBox3 = new System.Windows.Forms.TextBox();
  37. this.label57 = new System.Windows.Forms.Label();
  38. this.button24 = new System.Windows.Forms.Button();
  39. this.txt_linkImgUrl = new System.Windows.Forms.TextBox();
  40. this.label28 = new System.Windows.Forms.Label();
  41. this.txt_linkUrl = new System.Windows.Forms.TextBox();
  42. this.label27 = new System.Windows.Forms.Label();
  43. this.txt_linkDesc = new System.Windows.Forms.TextBox();
  44. this.label26 = new System.Windows.Forms.Label();
  45. this.txt_linkSdkVer = new System.Windows.Forms.TextBox();
  46. this.label25 = new System.Windows.Forms.Label();
  47. this.txt_linkAppId = new System.Windows.Forms.TextBox();
  48. this.label24 = new System.Windows.Forms.Label();
  49. this.txt_linkTitle = new System.Windows.Forms.TextBox();
  50. this.label23 = new System.Windows.Forms.Label();
  51. this.button23 = new System.Windows.Forms.Button();
  52. this.button17 = new System.Windows.Forms.Button();
  53. this.button2 = new System.Windows.Forms.Button();
  54. this.button1 = new System.Windows.Forms.Button();
  55. this.txt_msgText = new System.Windows.Forms.TextBox();
  56. this.label3 = new System.Windows.Forms.Label();
  57. this.txt_msgWxid = new System.Windows.Forms.TextBox();
  58. this.label2 = new System.Windows.Forms.Label();
  59. this.tabPage2 = new System.Windows.Forms.TabPage();
  60. this.button48 = new System.Windows.Forms.Button();
  61. this.txt_snsContext = new System.Windows.Forms.TextBox();
  62. this.label40 = new System.Windows.Forms.Label();
  63. this.button34 = new System.Windows.Forms.Button();
  64. this.txt_snsPlId = new System.Windows.Forms.TextBox();
  65. this.label39 = new System.Windows.Forms.Label();
  66. this.button33 = new System.Windows.Forms.Button();
  67. this.txt_snsId = new System.Windows.Forms.TextBox();
  68. this.label38 = new System.Windows.Forms.Label();
  69. this.button32 = new System.Windows.Forms.Button();
  70. this.txt_snswxid = new System.Windows.Forms.TextBox();
  71. this.label37 = new System.Windows.Forms.Label();
  72. this.button5 = new System.Windows.Forms.Button();
  73. this.listBox1 = new System.Windows.Forms.ListBox();
  74. this.button4 = new System.Windows.Forms.Button();
  75. this.button3 = new System.Windows.Forms.Button();
  76. this.txt_snsText = new System.Windows.Forms.TextBox();
  77. this.label4 = new System.Windows.Forms.Label();
  78. this.tabPage3 = new System.Windows.Forms.TabPage();
  79. this.button37 = new System.Windows.Forms.Button();
  80. this.button36 = new System.Windows.Forms.Button();
  81. this.txt_friendRemark = new System.Windows.Forms.TextBox();
  82. this.label41 = new System.Windows.Forms.Label();
  83. this.button35 = new System.Windows.Forms.Button();
  84. this.txt_friendwxid = new System.Windows.Forms.TextBox();
  85. this.label6 = new System.Windows.Forms.Label();
  86. this.lb_friend = new System.Windows.Forms.ListBox();
  87. this.label5 = new System.Windows.Forms.Label();
  88. this.tabPage4 = new System.Windows.Forms.TabPage();
  89. this.button39 = new System.Windows.Forms.Button();
  90. this.button38 = new System.Windows.Forms.Button();
  91. this.lb_group = new System.Windows.Forms.ListBox();
  92. this.label29 = new System.Windows.Forms.Label();
  93. this.button11 = new System.Windows.Forms.Button();
  94. this.button10 = new System.Windows.Forms.Button();
  95. this.txt_groupgg = new System.Windows.Forms.TextBox();
  96. this.label10 = new System.Windows.Forms.Label();
  97. this.button9 = new System.Windows.Forms.Button();
  98. this.txt_groupname = new System.Windows.Forms.TextBox();
  99. this.label11 = new System.Windows.Forms.Label();
  100. this.button8 = new System.Windows.Forms.Button();
  101. this.txt_groupwxid = new System.Windows.Forms.TextBox();
  102. this.label9 = new System.Windows.Forms.Label();
  103. this.button7 = new System.Windows.Forms.Button();
  104. this.txt_groupuserwxid = new System.Windows.Forms.TextBox();
  105. this.label8 = new System.Windows.Forms.Label();
  106. this.button6 = new System.Windows.Forms.Button();
  107. this.txt_GroupUsers = new System.Windows.Forms.TextBox();
  108. this.label7 = new System.Windows.Forms.Label();
  109. this.tabPage5 = new System.Windows.Forms.TabPage();
  110. this.button20 = new System.Windows.Forms.Button();
  111. this.button19 = new System.Windows.Forms.Button();
  112. this.button18 = new System.Windows.Forms.Button();
  113. this.button13 = new System.Windows.Forms.Button();
  114. this.button12 = new System.Windows.Forms.Button();
  115. this.txt_loginToken = new System.Windows.Forms.TextBox();
  116. this.label15 = new System.Windows.Forms.Label();
  117. this.txt_login62 = new System.Windows.Forms.TextBox();
  118. this.label14 = new System.Windows.Forms.Label();
  119. this.txt_loginPassword = new System.Windows.Forms.TextBox();
  120. this.label13 = new System.Windows.Forms.Label();
  121. this.txt_loginName = new System.Windows.Forms.TextBox();
  122. this.label12 = new System.Windows.Forms.Label();
  123. this.tabPage6 = new System.Windows.Forms.TabPage();
  124. this.button47 = new System.Windows.Forms.Button();
  125. this.txt_addUserInfo = new System.Windows.Forms.TextBox();
  126. this.label55 = new System.Windows.Forms.Label();
  127. this.button16 = new System.Windows.Forms.Button();
  128. this.label21 = new System.Windows.Forms.Label();
  129. this.cb_addtype = new System.Windows.Forms.ComboBox();
  130. this.txt_hellotext = new System.Windows.Forms.TextBox();
  131. this.label20 = new System.Windows.Forms.Label();
  132. this.txt_v2 = new System.Windows.Forms.TextBox();
  133. this.label19 = new System.Windows.Forms.Label();
  134. this.txt_v1 = new System.Windows.Forms.TextBox();
  135. this.label18 = new System.Windows.Forms.Label();
  136. this.button15 = new System.Windows.Forms.Button();
  137. this.txt_Lng = new System.Windows.Forms.TextBox();
  138. this.label17 = new System.Windows.Forms.Label();
  139. this.txt_Lat = new System.Windows.Forms.TextBox();
  140. this.label16 = new System.Windows.Forms.Label();
  141. this.tabPage8 = new System.Windows.Forms.TabPage();
  142. this.button45 = new System.Windows.Forms.Button();
  143. this.txt_gzhUrl = new System.Windows.Forms.TextBox();
  144. this.label47 = new System.Windows.Forms.Label();
  145. this.button40 = new System.Windows.Forms.Button();
  146. this.txt_gzhKey = new System.Windows.Forms.TextBox();
  147. this.label43 = new System.Windows.Forms.Label();
  148. this.txt_gzhUin = new System.Windows.Forms.TextBox();
  149. this.label42 = new System.Windows.Forms.Label();
  150. this.lb_gzh = new System.Windows.Forms.ListBox();
  151. this.button22 = new System.Windows.Forms.Button();
  152. this.button21 = new System.Windows.Forms.Button();
  153. this.txt_gzhid = new System.Windows.Forms.TextBox();
  154. this.label22 = new System.Windows.Forms.Label();
  155. this.tabPage7 = new System.Windows.Forms.TabPage();
  156. this.txt_msgcallback = new System.Windows.Forms.TextBox();
  157. this.tabPage9 = new System.Windows.Forms.TabPage();
  158. this.button28 = new System.Windows.Forms.Button();
  159. this.txt_labelId1 = new System.Windows.Forms.TextBox();
  160. this.label33 = new System.Windows.Forms.Label();
  161. this.button27 = new System.Windows.Forms.Button();
  162. this.txt_labelName = new System.Windows.Forms.TextBox();
  163. this.label32 = new System.Windows.Forms.Label();
  164. this.button26 = new System.Windows.Forms.Button();
  165. this.txt_labelId = new System.Windows.Forms.TextBox();
  166. this.label31 = new System.Windows.Forms.Label();
  167. this.txt_labelWxid = new System.Windows.Forms.TextBox();
  168. this.label30 = new System.Windows.Forms.Label();
  169. this.button25 = new System.Windows.Forms.Button();
  170. this.tabPage10 = new System.Windows.Forms.TabPage();
  171. this.txt_favId = new System.Windows.Forms.TextBox();
  172. this.label36 = new System.Windows.Forms.Label();
  173. this.button31 = new System.Windows.Forms.Button();
  174. this.txt_favObject = new System.Windows.Forms.TextBox();
  175. this.label35 = new System.Windows.Forms.Label();
  176. this.button30 = new System.Windows.Forms.Button();
  177. this.txt_favKey = new System.Windows.Forms.TextBox();
  178. this.label34 = new System.Windows.Forms.Label();
  179. this.button29 = new System.Windows.Forms.Button();
  180. this.tabPage11 = new System.Windows.Forms.TabPage();
  181. this.button46 = new System.Windows.Forms.Button();
  182. this.label54 = new System.Windows.Forms.Label();
  183. this.txt_setCity = new System.Windows.Forms.TextBox();
  184. this.label53 = new System.Windows.Forms.Label();
  185. this.txt_setProvincia = new System.Windows.Forms.TextBox();
  186. this.label52 = new System.Windows.Forms.Label();
  187. this.txt_setCountry = new System.Windows.Forms.TextBox();
  188. this.label51 = new System.Windows.Forms.Label();
  189. this.label50 = new System.Windows.Forms.Label();
  190. this.txt_setSex = new System.Windows.Forms.TextBox();
  191. this.label49 = new System.Windows.Forms.Label();
  192. this.txt_setSign = new System.Windows.Forms.TextBox();
  193. this.label48 = new System.Windows.Forms.Label();
  194. this.txt_setNickName = new System.Windows.Forms.TextBox();
  195. this.button41 = new System.Windows.Forms.Button();
  196. this.label44 = new System.Windows.Forms.Label();
  197. this.txt_setWxid = new System.Windows.Forms.TextBox();
  198. this.tabPage12 = new System.Windows.Forms.TabPage();
  199. this.button44 = new System.Windows.Forms.Button();
  200. this.button43 = new System.Windows.Forms.Button();
  201. this.txt_orderUrl = new System.Windows.Forms.TextBox();
  202. this.label46 = new System.Windows.Forms.Label();
  203. this.label45 = new System.Windows.Forms.Label();
  204. this.button42 = new System.Windows.Forms.Button();
  205. this.button14 = new System.Windows.Forms.Button();
  206. this.txt_syslog = new System.Windows.Forms.TextBox();
  207. this.label56 = new System.Windows.Forms.Label();
  208. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  209. this.tabControl1.SuspendLayout();
  210. this.tabPage1.SuspendLayout();
  211. this.tabPage2.SuspendLayout();
  212. this.tabPage3.SuspendLayout();
  213. this.tabPage4.SuspendLayout();
  214. this.tabPage5.SuspendLayout();
  215. this.tabPage6.SuspendLayout();
  216. this.tabPage8.SuspendLayout();
  217. this.tabPage7.SuspendLayout();
  218. this.tabPage9.SuspendLayout();
  219. this.tabPage10.SuspendLayout();
  220. this.tabPage11.SuspendLayout();
  221. this.tabPage12.SuspendLayout();
  222. this.SuspendLayout();
  223. //
  224. // pictureBox1
  225. //
  226. this.pictureBox1.Location = new System.Drawing.Point(13, 13);
  227. this.pictureBox1.Name = "pictureBox1";
  228. this.pictureBox1.Size = new System.Drawing.Size(191, 185);
  229. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  230. this.pictureBox1.TabIndex = 0;
  231. this.pictureBox1.TabStop = false;
  232. //
  233. // textBox1
  234. //
  235. this.textBox1.Location = new System.Drawing.Point(12, 248);
  236. this.textBox1.Multiline = true;
  237. this.textBox1.Name = "textBox1";
  238. this.textBox1.Size = new System.Drawing.Size(192, 126);
  239. this.textBox1.TabIndex = 1;
  240. //
  241. // label1
  242. //
  243. this.label1.AutoSize = true;
  244. this.label1.Location = new System.Drawing.Point(12, 216);
  245. this.label1.Name = "label1";
  246. this.label1.Size = new System.Drawing.Size(39, 15);
  247. this.label1.TabIndex = 2;
  248. this.label1.Text = "log:";
  249. //
  250. // tabControl1
  251. //
  252. this.tabControl1.Controls.Add(this.tabPage1);
  253. this.tabControl1.Controls.Add(this.tabPage2);
  254. this.tabControl1.Controls.Add(this.tabPage3);
  255. this.tabControl1.Controls.Add(this.tabPage4);
  256. this.tabControl1.Controls.Add(this.tabPage5);
  257. this.tabControl1.Controls.Add(this.tabPage6);
  258. this.tabControl1.Controls.Add(this.tabPage8);
  259. this.tabControl1.Controls.Add(this.tabPage7);
  260. this.tabControl1.Controls.Add(this.tabPage9);
  261. this.tabControl1.Controls.Add(this.tabPage10);
  262. this.tabControl1.Controls.Add(this.tabPage11);
  263. this.tabControl1.Controls.Add(this.tabPage12);
  264. this.tabControl1.Location = new System.Drawing.Point(224, 13);
  265. this.tabControl1.Name = "tabControl1";
  266. this.tabControl1.SelectedIndex = 0;
  267. this.tabControl1.Size = new System.Drawing.Size(773, 425);
  268. this.tabControl1.TabIndex = 3;
  269. //
  270. // tabPage1
  271. //
  272. this.tabPage1.Controls.Add(this.button49);
  273. this.tabPage1.Controls.Add(this.textBox2);
  274. this.tabPage1.Controls.Add(this.textBox3);
  275. this.tabPage1.Controls.Add(this.label57);
  276. this.tabPage1.Controls.Add(this.button24);
  277. this.tabPage1.Controls.Add(this.txt_linkImgUrl);
  278. this.tabPage1.Controls.Add(this.label28);
  279. this.tabPage1.Controls.Add(this.txt_linkUrl);
  280. this.tabPage1.Controls.Add(this.label27);
  281. this.tabPage1.Controls.Add(this.txt_linkDesc);
  282. this.tabPage1.Controls.Add(this.label26);
  283. this.tabPage1.Controls.Add(this.txt_linkSdkVer);
  284. this.tabPage1.Controls.Add(this.label25);
  285. this.tabPage1.Controls.Add(this.txt_linkAppId);
  286. this.tabPage1.Controls.Add(this.label24);
  287. this.tabPage1.Controls.Add(this.txt_linkTitle);
  288. this.tabPage1.Controls.Add(this.label23);
  289. this.tabPage1.Controls.Add(this.button23);
  290. this.tabPage1.Controls.Add(this.button17);
  291. this.tabPage1.Controls.Add(this.button2);
  292. this.tabPage1.Controls.Add(this.button1);
  293. this.tabPage1.Controls.Add(this.txt_msgText);
  294. this.tabPage1.Controls.Add(this.label3);
  295. this.tabPage1.Controls.Add(this.txt_msgWxid);
  296. this.tabPage1.Controls.Add(this.label2);
  297. this.tabPage1.Location = new System.Drawing.Point(4, 25);
  298. this.tabPage1.Name = "tabPage1";
  299. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  300. this.tabPage1.Size = new System.Drawing.Size(765, 396);
  301. this.tabPage1.TabIndex = 0;
  302. this.tabPage1.Text = "消息模块";
  303. this.tabPage1.UseVisualStyleBackColor = true;
  304. //
  305. // button49
  306. //
  307. this.button49.Location = new System.Drawing.Point(654, 59);
  308. this.button49.Name = "button49";
  309. this.button49.Size = new System.Drawing.Size(86, 28);
  310. this.button49.TabIndex = 25;
  311. this.button49.Text = "群发";
  312. this.button49.UseVisualStyleBackColor = true;
  313. this.button49.Click += new System.EventHandler(this.button49_Click);
  314. //
  315. // textBox2
  316. //
  317. this.textBox2.Location = new System.Drawing.Point(442, 59);
  318. this.textBox2.Name = "textBox2";
  319. this.textBox2.Size = new System.Drawing.Size(206, 25);
  320. this.textBox2.TabIndex = 24;
  321. //
  322. // textBox3
  323. //
  324. this.textBox3.Location = new System.Drawing.Point(442, 13);
  325. this.textBox3.Name = "textBox3";
  326. this.textBox3.Size = new System.Drawing.Size(206, 25);
  327. this.textBox3.TabIndex = 22;
  328. this.textBox3.Text = "[\"AB1\",\"AC2\",\"AD3\"]";
  329. //
  330. // label57
  331. //
  332. this.label57.AutoSize = true;
  333. this.label57.Location = new System.Drawing.Point(338, 18);
  334. this.label57.Name = "label57";
  335. this.label57.Size = new System.Drawing.Size(54, 15);
  336. this.label57.TabIndex = 21;
  337. this.label57.Text = "wxid:";
  338. //
  339. // button24
  340. //
  341. this.button24.Location = new System.Drawing.Point(51, 341);
  342. this.button24.Name = "button24";
  343. this.button24.Size = new System.Drawing.Size(107, 35);
  344. this.button24.TabIndex = 20;
  345. this.button24.Text = "发送链接";
  346. this.button24.UseVisualStyleBackColor = true;
  347. this.button24.Click += new System.EventHandler(this.button24_Click);
  348. //
  349. // txt_linkImgUrl
  350. //
  351. this.txt_linkImgUrl.Location = new System.Drawing.Point(109, 291);
  352. this.txt_linkImgUrl.Name = "txt_linkImgUrl";
  353. this.txt_linkImgUrl.Size = new System.Drawing.Size(638, 25);
  354. this.txt_linkImgUrl.TabIndex = 19;
  355. this.txt_linkImgUrl.Text = "https://avatars2.githubusercontent.com/u/26290929?s=460&v=4";
  356. //
  357. // label28
  358. //
  359. this.label28.AutoSize = true;
  360. this.label28.Location = new System.Drawing.Point(27, 294);
  361. this.label28.Name = "label28";
  362. this.label28.Size = new System.Drawing.Size(76, 15);
  363. this.label28.TabIndex = 18;
  364. this.label28.Text = "图片url:";
  365. //
  366. // txt_linkUrl
  367. //
  368. this.txt_linkUrl.Location = new System.Drawing.Point(109, 251);
  369. this.txt_linkUrl.Name = "txt_linkUrl";
  370. this.txt_linkUrl.Size = new System.Drawing.Size(638, 25);
  371. this.txt_linkUrl.TabIndex = 17;
  372. this.txt_linkUrl.Text = "https://github.com/changtuiqie/Mac.WeChat";
  373. //
  374. // label27
  375. //
  376. this.label27.AutoSize = true;
  377. this.label27.Location = new System.Drawing.Point(57, 254);
  378. this.label27.Name = "label27";
  379. this.label27.Size = new System.Drawing.Size(46, 15);
  380. this.label27.TabIndex = 16;
  381. this.label27.Text = "url:";
  382. //
  383. // txt_linkDesc
  384. //
  385. this.txt_linkDesc.Location = new System.Drawing.Point(109, 210);
  386. this.txt_linkDesc.Name = "txt_linkDesc";
  387. this.txt_linkDesc.Size = new System.Drawing.Size(638, 25);
  388. this.txt_linkDesc.TabIndex = 15;
  389. this.txt_linkDesc.Text = "test";
  390. //
  391. // label26
  392. //
  393. this.label26.AutoSize = true;
  394. this.label26.Location = new System.Drawing.Point(21, 213);
  395. this.label26.Name = "label26";
  396. this.label26.Size = new System.Drawing.Size(82, 15);
  397. this.label26.TabIndex = 14;
  398. this.label26.Text = "链接描述:";
  399. //
  400. // txt_linkSdkVer
  401. //
  402. this.txt_linkSdkVer.Location = new System.Drawing.Point(589, 175);
  403. this.txt_linkSdkVer.Name = "txt_linkSdkVer";
  404. this.txt_linkSdkVer.Size = new System.Drawing.Size(158, 25);
  405. this.txt_linkSdkVer.TabIndex = 13;
  406. this.txt_linkSdkVer.Text = "0";
  407. //
  408. // label25
  409. //
  410. this.label25.AutoSize = true;
  411. this.label25.Location = new System.Drawing.Point(513, 181);
  412. this.label25.Name = "label25";
  413. this.label25.Size = new System.Drawing.Size(70, 15);
  414. this.label25.TabIndex = 12;
  415. this.label25.Text = "sdkVer:";
  416. //
  417. // txt_linkAppId
  418. //
  419. this.txt_linkAppId.Location = new System.Drawing.Point(331, 175);
  420. this.txt_linkAppId.Name = "txt_linkAppId";
  421. this.txt_linkAppId.Size = new System.Drawing.Size(158, 25);
  422. this.txt_linkAppId.TabIndex = 11;
  423. this.txt_linkAppId.Text = "wx0f76313b15c62c93";
  424. //
  425. // label24
  426. //
  427. this.label24.AutoSize = true;
  428. this.label24.Location = new System.Drawing.Point(279, 178);
  429. this.label24.Name = "label24";
  430. this.label24.Size = new System.Drawing.Size(62, 15);
  431. this.label24.TabIndex = 10;
  432. this.label24.Text = "appid:";
  433. //
  434. // txt_linkTitle
  435. //
  436. this.txt_linkTitle.Location = new System.Drawing.Point(109, 175);
  437. this.txt_linkTitle.Name = "txt_linkTitle";
  438. this.txt_linkTitle.Size = new System.Drawing.Size(158, 25);
  439. this.txt_linkTitle.TabIndex = 9;
  440. this.txt_linkTitle.Text = "协议链接demo";
  441. //
  442. // label23
  443. //
  444. this.label23.AutoSize = true;
  445. this.label23.Location = new System.Drawing.Point(21, 178);
  446. this.label23.Name = "label23";
  447. this.label23.Size = new System.Drawing.Size(82, 15);
  448. this.label23.TabIndex = 8;
  449. this.label23.Text = "链接标题:";
  450. //
  451. // button23
  452. //
  453. this.button23.Location = new System.Drawing.Point(331, 117);
  454. this.button23.Name = "button23";
  455. this.button23.Size = new System.Drawing.Size(135, 31);
  456. this.button23.TabIndex = 7;
  457. this.button23.Text = "发送语音MP3";
  458. this.button23.UseVisualStyleBackColor = true;
  459. this.button23.Click += new System.EventHandler(this.button23_Click);
  460. //
  461. // button17
  462. //
  463. this.button17.Location = new System.Drawing.Point(189, 117);
  464. this.button17.Name = "button17";
  465. this.button17.Size = new System.Drawing.Size(116, 31);
  466. this.button17.TabIndex = 6;
  467. this.button17.Text = "发送语音silk";
  468. this.button17.UseVisualStyleBackColor = true;
  469. this.button17.Click += new System.EventHandler(this.button17_Click);
  470. //
  471. // button2
  472. //
  473. this.button2.Location = new System.Drawing.Point(51, 117);
  474. this.button2.Name = "button2";
  475. this.button2.Size = new System.Drawing.Size(107, 31);
  476. this.button2.TabIndex = 5;
  477. this.button2.Text = "发送图片";
  478. this.button2.UseVisualStyleBackColor = true;
  479. this.button2.Click += new System.EventHandler(this.button2_Click);
  480. //
  481. // button1
  482. //
  483. this.button1.Location = new System.Drawing.Point(334, 59);
  484. this.button1.Name = "button1";
  485. this.button1.Size = new System.Drawing.Size(86, 28);
  486. this.button1.TabIndex = 4;
  487. this.button1.Text = "发送";
  488. this.button1.UseVisualStyleBackColor = true;
  489. this.button1.Click += new System.EventHandler(this.button1_Click);
  490. //
  491. // txt_msgText
  492. //
  493. this.txt_msgText.Location = new System.Drawing.Point(122, 59);
  494. this.txt_msgText.Name = "txt_msgText";
  495. this.txt_msgText.Size = new System.Drawing.Size(206, 25);
  496. this.txt_msgText.TabIndex = 3;
  497. //
  498. // label3
  499. //
  500. this.label3.AutoSize = true;
  501. this.label3.Location = new System.Drawing.Point(34, 62);
  502. this.label3.Name = "label3";
  503. this.label3.Size = new System.Drawing.Size(82, 15);
  504. this.label3.TabIndex = 2;
  505. this.label3.Text = "文字消息:";
  506. //
  507. // txt_msgWxid
  508. //
  509. this.txt_msgWxid.Location = new System.Drawing.Point(122, 13);
  510. this.txt_msgWxid.Name = "txt_msgWxid";
  511. this.txt_msgWxid.Size = new System.Drawing.Size(206, 25);
  512. this.txt_msgWxid.TabIndex = 1;
  513. //
  514. // label2
  515. //
  516. this.label2.AutoSize = true;
  517. this.label2.Location = new System.Drawing.Point(18, 18);
  518. this.label2.Name = "label2";
  519. this.label2.Size = new System.Drawing.Size(98, 15);
  520. this.label2.TabIndex = 0;
  521. this.label2.Text = "好友微信id:";
  522. //
  523. // tabPage2
  524. //
  525. this.tabPage2.Controls.Add(this.button48);
  526. this.tabPage2.Controls.Add(this.txt_snsContext);
  527. this.tabPage2.Controls.Add(this.label40);
  528. this.tabPage2.Controls.Add(this.button34);
  529. this.tabPage2.Controls.Add(this.txt_snsPlId);
  530. this.tabPage2.Controls.Add(this.label39);
  531. this.tabPage2.Controls.Add(this.button33);
  532. this.tabPage2.Controls.Add(this.txt_snsId);
  533. this.tabPage2.Controls.Add(this.label38);
  534. this.tabPage2.Controls.Add(this.button32);
  535. this.tabPage2.Controls.Add(this.txt_snswxid);
  536. this.tabPage2.Controls.Add(this.label37);
  537. this.tabPage2.Controls.Add(this.button5);
  538. this.tabPage2.Controls.Add(this.listBox1);
  539. this.tabPage2.Controls.Add(this.button4);
  540. this.tabPage2.Controls.Add(this.button3);
  541. this.tabPage2.Controls.Add(this.txt_snsText);
  542. this.tabPage2.Controls.Add(this.label4);
  543. this.tabPage2.Location = new System.Drawing.Point(4, 25);
  544. this.tabPage2.Name = "tabPage2";
  545. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  546. this.tabPage2.Size = new System.Drawing.Size(765, 396);
  547. this.tabPage2.TabIndex = 1;
  548. this.tabPage2.Text = "朋友圈模块";
  549. this.tabPage2.UseVisualStyleBackColor = true;
  550. //
  551. // button48
  552. //
  553. this.button48.Location = new System.Drawing.Point(275, 154);
  554. this.button48.Name = "button48";
  555. this.button48.Size = new System.Drawing.Size(129, 39);
  556. this.button48.TabIndex = 18;
  557. this.button48.Text = "查看所有朋友圈";
  558. this.button48.UseVisualStyleBackColor = true;
  559. this.button48.Click += new System.EventHandler(this.button48_Click);
  560. //
  561. // txt_snsContext
  562. //
  563. this.txt_snsContext.Location = new System.Drawing.Point(489, 151);
  564. this.txt_snsContext.Name = "txt_snsContext";
  565. this.txt_snsContext.Size = new System.Drawing.Size(151, 25);
  566. this.txt_snsContext.TabIndex = 16;
  567. //
  568. // label40
  569. //
  570. this.label40.AutoSize = true;
  571. this.label40.Location = new System.Drawing.Point(410, 154);
  572. this.label40.Name = "label40";
  573. this.label40.Size = new System.Drawing.Size(82, 15);
  574. this.label40.TabIndex = 15;
  575. this.label40.Text = "评论内容:";
  576. //
  577. // button34
  578. //
  579. this.button34.Location = new System.Drawing.Point(646, 125);
  580. this.button34.Name = "button34";
  581. this.button34.Size = new System.Drawing.Size(113, 25);
  582. this.button34.TabIndex = 14;
  583. this.button34.Text = "朋友圈评论";
  584. this.button34.UseVisualStyleBackColor = true;
  585. this.button34.Click += new System.EventHandler(this.button34_Click);
  586. //
  587. // txt_snsPlId
  588. //
  589. this.txt_snsPlId.Location = new System.Drawing.Point(489, 108);
  590. this.txt_snsPlId.Name = "txt_snsPlId";
  591. this.txt_snsPlId.Size = new System.Drawing.Size(151, 25);
  592. this.txt_snsPlId.TabIndex = 13;
  593. //
  594. // label39
  595. //
  596. this.label39.AutoSize = true;
  597. this.label39.Location = new System.Drawing.Point(430, 111);
  598. this.label39.Name = "label39";
  599. this.label39.Size = new System.Drawing.Size(68, 15);
  600. this.label39.TabIndex = 12;
  601. this.label39.Text = "评论id:";
  602. //
  603. // button33
  604. //
  605. this.button33.Location = new System.Drawing.Point(647, 60);
  606. this.button33.Name = "button33";
  607. this.button33.Size = new System.Drawing.Size(112, 25);
  608. this.button33.TabIndex = 11;
  609. this.button33.Text = "获取朋友圈";
  610. this.button33.UseVisualStyleBackColor = true;
  611. this.button33.Click += new System.EventHandler(this.button33_Click);
  612. //
  613. // txt_snsId
  614. //
  615. this.txt_snsId.Location = new System.Drawing.Point(489, 60);
  616. this.txt_snsId.Name = "txt_snsId";
  617. this.txt_snsId.Size = new System.Drawing.Size(151, 25);
  618. this.txt_snsId.TabIndex = 10;
  619. //
  620. // label38
  621. //
  622. this.label38.AutoSize = true;
  623. this.label38.Location = new System.Drawing.Point(430, 63);
  624. this.label38.Name = "label38";
  625. this.label38.Size = new System.Drawing.Size(62, 15);
  626. this.label38.TabIndex = 9;
  627. this.label38.Text = "snsid:";
  628. //
  629. // button32
  630. //
  631. this.button32.Location = new System.Drawing.Point(646, 16);
  632. this.button32.Name = "button32";
  633. this.button32.Size = new System.Drawing.Size(113, 26);
  634. this.button32.TabIndex = 8;
  635. this.button32.Text = "查看朋友圈";
  636. this.button32.UseVisualStyleBackColor = true;
  637. this.button32.Click += new System.EventHandler(this.button32_Click);
  638. //
  639. // txt_snswxid
  640. //
  641. this.txt_snswxid.Location = new System.Drawing.Point(489, 16);
  642. this.txt_snswxid.Name = "txt_snswxid";
  643. this.txt_snswxid.Size = new System.Drawing.Size(151, 25);
  644. this.txt_snswxid.TabIndex = 7;
  645. //
  646. // label37
  647. //
  648. this.label37.AutoSize = true;
  649. this.label37.Location = new System.Drawing.Point(438, 19);
  650. this.label37.Name = "label37";
  651. this.label37.Size = new System.Drawing.Size(54, 15);
  652. this.label37.TabIndex = 6;
  653. this.label37.Text = "wxid:";
  654. //
  655. // button5
  656. //
  657. this.button5.Location = new System.Drawing.Point(275, 71);
  658. this.button5.Name = "button5";
  659. this.button5.Size = new System.Drawing.Size(129, 31);
  660. this.button5.TabIndex = 5;
  661. this.button5.Text = "添加图片";
  662. this.button5.UseVisualStyleBackColor = true;
  663. this.button5.Click += new System.EventHandler(this.button5_Click);
  664. //
  665. // listBox1
  666. //
  667. this.listBox1.FormattingEnabled = true;
  668. this.listBox1.ItemHeight = 15;
  669. this.listBox1.Location = new System.Drawing.Point(23, 71);
  670. this.listBox1.Name = "listBox1";
  671. this.listBox1.Size = new System.Drawing.Size(227, 274);
  672. this.listBox1.TabIndex = 4;
  673. //
  674. // button4
  675. //
  676. this.button4.Location = new System.Drawing.Point(275, 108);
  677. this.button4.Name = "button4";
  678. this.button4.Size = new System.Drawing.Size(129, 31);
  679. this.button4.TabIndex = 3;
  680. this.button4.Text = "图文朋友圈";
  681. this.button4.UseVisualStyleBackColor = true;
  682. this.button4.Click += new System.EventHandler(this.button4_Click);
  683. //
  684. // button3
  685. //
  686. this.button3.Location = new System.Drawing.Point(275, 11);
  687. this.button3.Name = "button3";
  688. this.button3.Size = new System.Drawing.Size(129, 31);
  689. this.button3.TabIndex = 2;
  690. this.button3.Text = "文字朋友圈";
  691. this.button3.UseVisualStyleBackColor = true;
  692. this.button3.Click += new System.EventHandler(this.button3_Click);
  693. //
  694. // txt_snsText
  695. //
  696. this.txt_snsText.Location = new System.Drawing.Point(78, 16);
  697. this.txt_snsText.Name = "txt_snsText";
  698. this.txt_snsText.Size = new System.Drawing.Size(160, 25);
  699. this.txt_snsText.TabIndex = 1;
  700. this.txt_snsText.Text = "发送一次朋友圈子,你们平时看不到我的芳容骚貌";
  701. //
  702. // label4
  703. //
  704. this.label4.AutoSize = true;
  705. this.label4.Location = new System.Drawing.Point(20, 19);
  706. this.label4.Name = "label4";
  707. this.label4.Size = new System.Drawing.Size(52, 15);
  708. this.label4.TabIndex = 0;
  709. this.label4.Text = "文字:";
  710. //
  711. // tabPage3
  712. //
  713. this.tabPage3.Controls.Add(this.button37);
  714. this.tabPage3.Controls.Add(this.button36);
  715. this.tabPage3.Controls.Add(this.txt_friendRemark);
  716. this.tabPage3.Controls.Add(this.label41);
  717. this.tabPage3.Controls.Add(this.button35);
  718. this.tabPage3.Controls.Add(this.txt_friendwxid);
  719. this.tabPage3.Controls.Add(this.label6);
  720. this.tabPage3.Controls.Add(this.lb_friend);
  721. this.tabPage3.Controls.Add(this.label5);
  722. this.tabPage3.Location = new System.Drawing.Point(4, 25);
  723. this.tabPage3.Name = "tabPage3";
  724. this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
  725. this.tabPage3.Size = new System.Drawing.Size(765, 396);
  726. this.tabPage3.TabIndex = 2;
  727. this.tabPage3.Text = "好友模块";
  728. this.tabPage3.UseVisualStyleBackColor = true;
  729. //
  730. // button37
  731. //
  732. this.button37.Location = new System.Drawing.Point(621, 113);
  733. this.button37.Name = "button37";
  734. this.button37.Size = new System.Drawing.Size(94, 30);
  735. this.button37.TabIndex = 9;
  736. this.button37.Text = "删除好友";
  737. this.button37.UseVisualStyleBackColor = true;
  738. this.button37.Click += new System.EventHandler(this.button37_Click);
  739. //
  740. // button36
  741. //
  742. this.button36.Location = new System.Drawing.Point(621, 68);
  743. this.button36.Name = "button36";
  744. this.button36.Size = new System.Drawing.Size(94, 25);
  745. this.button36.TabIndex = 8;
  746. this.button36.Text = "修改备注";
  747. this.button36.UseVisualStyleBackColor = true;
  748. this.button36.Click += new System.EventHandler(this.button36_Click);
  749. //
  750. // txt_friendRemark
  751. //
  752. this.txt_friendRemark.Location = new System.Drawing.Point(439, 68);
  753. this.txt_friendRemark.Name = "txt_friendRemark";
  754. this.txt_friendRemark.Size = new System.Drawing.Size(166, 25);
  755. this.txt_friendRemark.TabIndex = 7;
  756. //
  757. // label41
  758. //
  759. this.label41.AutoSize = true;
  760. this.label41.Location = new System.Drawing.Point(388, 78);
  761. this.label41.Name = "label41";
  762. this.label41.Size = new System.Drawing.Size(52, 15);
  763. this.label41.TabIndex = 6;
  764. this.label41.Text = "备注:";
  765. //
  766. // button35
  767. //
  768. this.button35.Location = new System.Drawing.Point(621, 19);
  769. this.button35.Name = "button35";
  770. this.button35.Size = new System.Drawing.Size(94, 29);
  771. this.button35.TabIndex = 5;
  772. this.button35.Text = "获取详情";
  773. this.button35.UseVisualStyleBackColor = true;
  774. this.button35.Click += new System.EventHandler(this.button35_Click);
  775. //
  776. // txt_friendwxid
  777. //
  778. this.txt_friendwxid.Location = new System.Drawing.Point(439, 19);
  779. this.txt_friendwxid.Name = "txt_friendwxid";
  780. this.txt_friendwxid.Size = new System.Drawing.Size(166, 25);
  781. this.txt_friendwxid.TabIndex = 4;
  782. //
  783. // label6
  784. //
  785. this.label6.AutoSize = true;
  786. this.label6.Location = new System.Drawing.Point(385, 19);
  787. this.label6.Name = "label6";
  788. this.label6.Size = new System.Drawing.Size(47, 15);
  789. this.label6.TabIndex = 3;
  790. this.label6.Text = "wxid:";
  791. //
  792. // lb_friend
  793. //
  794. this.lb_friend.FormattingEnabled = true;
  795. this.lb_friend.ItemHeight = 15;
  796. this.lb_friend.Location = new System.Drawing.Point(26, 58);
  797. this.lb_friend.Name = "lb_friend";
  798. this.lb_friend.Size = new System.Drawing.Size(325, 319);
  799. this.lb_friend.TabIndex = 2;
  800. //
  801. // label5
  802. //
  803. this.label5.AutoSize = true;
  804. this.label5.Location = new System.Drawing.Point(23, 19);
  805. this.label5.Name = "label5";
  806. this.label5.Size = new System.Drawing.Size(52, 15);
  807. this.label5.TabIndex = 0;
  808. this.label5.Text = "好友:";
  809. //
  810. // tabPage4
  811. //
  812. this.tabPage4.Controls.Add(this.button39);
  813. this.tabPage4.Controls.Add(this.button38);
  814. this.tabPage4.Controls.Add(this.lb_group);
  815. this.tabPage4.Controls.Add(this.label29);
  816. this.tabPage4.Controls.Add(this.button11);
  817. this.tabPage4.Controls.Add(this.button10);
  818. this.tabPage4.Controls.Add(this.txt_groupgg);
  819. this.tabPage4.Controls.Add(this.label10);
  820. this.tabPage4.Controls.Add(this.button9);
  821. this.tabPage4.Controls.Add(this.txt_groupname);
  822. this.tabPage4.Controls.Add(this.label11);
  823. this.tabPage4.Controls.Add(this.button8);
  824. this.tabPage4.Controls.Add(this.txt_groupwxid);
  825. this.tabPage4.Controls.Add(this.label9);
  826. this.tabPage4.Controls.Add(this.button7);
  827. this.tabPage4.Controls.Add(this.txt_groupuserwxid);
  828. this.tabPage4.Controls.Add(this.label8);
  829. this.tabPage4.Controls.Add(this.button6);
  830. this.tabPage4.Controls.Add(this.txt_GroupUsers);
  831. this.tabPage4.Controls.Add(this.label7);
  832. this.tabPage4.Location = new System.Drawing.Point(4, 25);
  833. this.tabPage4.Name = "tabPage4";
  834. this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
  835. this.tabPage4.Size = new System.Drawing.Size(765, 396);
  836. this.tabPage4.TabIndex = 3;
  837. this.tabPage4.Text = "群模块";
  838. this.tabPage4.UseVisualStyleBackColor = true;
  839. //
  840. // button39
  841. //
  842. this.button39.Location = new System.Drawing.Point(445, 67);
  843. this.button39.Name = "button39";
  844. this.button39.Size = new System.Drawing.Size(148, 25);
  845. this.button39.TabIndex = 20;
  846. this.button39.Text = "获取群成员资料";
  847. this.button39.UseVisualStyleBackColor = true;
  848. this.button39.Click += new System.EventHandler(this.button39_Click);
  849. //
  850. // button38
  851. //
  852. this.button38.Location = new System.Drawing.Point(393, 108);
  853. this.button38.Name = "button38";
  854. this.button38.Size = new System.Drawing.Size(124, 25);
  855. this.button38.TabIndex = 19;
  856. this.button38.Text = "邀请群成员";
  857. this.button38.UseVisualStyleBackColor = true;
  858. this.button38.Click += new System.EventHandler(this.button38_Click);
  859. //
  860. // lb_group
  861. //
  862. this.lb_group.FormattingEnabled = true;
  863. this.lb_group.ItemHeight = 15;
  864. this.lb_group.Location = new System.Drawing.Point(6, 247);
  865. this.lb_group.Name = "lb_group";
  866. this.lb_group.Size = new System.Drawing.Size(753, 139);
  867. this.lb_group.TabIndex = 18;
  868. //
  869. // label29
  870. //
  871. this.label29.AutoSize = true;
  872. this.label29.Location = new System.Drawing.Point(442, 18);
  873. this.label29.Name = "label29";
  874. this.label29.Size = new System.Drawing.Size(272, 15);
  875. this.label29.TabIndex = 16;
  876. this.label29.Text = "需要传自己和好友的wxid,且不少于3人";
  877. //
  878. // button11
  879. //
  880. this.button11.Location = new System.Drawing.Point(341, 67);
  881. this.button11.Name = "button11";
  882. this.button11.Size = new System.Drawing.Size(89, 25);
  883. this.button11.TabIndex = 15;
  884. this.button11.Text = "退出群";
  885. this.button11.UseVisualStyleBackColor = true;
  886. this.button11.Click += new System.EventHandler(this.button11_Click);
  887. //
  888. // button10
  889. //
  890. this.button10.Location = new System.Drawing.Point(270, 200);
  891. this.button10.Name = "button10";
  892. this.button10.Size = new System.Drawing.Size(104, 25);
  893. this.button10.TabIndex = 14;
  894. this.button10.Text = "修改群公告";
  895. this.button10.UseVisualStyleBackColor = true;
  896. this.button10.Click += new System.EventHandler(this.button10_Click);
  897. //
  898. // txt_groupgg
  899. //
  900. this.txt_groupgg.Location = new System.Drawing.Point(109, 200);
  901. this.txt_groupgg.Name = "txt_groupgg";
  902. this.txt_groupgg.Size = new System.Drawing.Size(146, 25);
  903. this.txt_groupgg.TabIndex = 13;
  904. //
  905. // label10
  906. //
  907. this.label10.AutoSize = true;
  908. this.label10.Location = new System.Drawing.Point(36, 210);
  909. this.label10.Name = "label10";
  910. this.label10.Size = new System.Drawing.Size(67, 15);
  911. this.label10.TabIndex = 12;
  912. this.label10.Text = "群公告:";
  913. //
  914. // button9
  915. //
  916. this.button9.Location = new System.Drawing.Point(270, 157);
  917. this.button9.Name = "button9";
  918. this.button9.Size = new System.Drawing.Size(104, 25);
  919. this.button9.TabIndex = 11;
  920. this.button9.Text = "修改群名称";
  921. this.button9.UseVisualStyleBackColor = true;
  922. this.button9.Click += new System.EventHandler(this.button9_Click);
  923. //
  924. // txt_groupname
  925. //
  926. this.txt_groupname.Location = new System.Drawing.Point(109, 157);
  927. this.txt_groupname.Name = "txt_groupname";
  928. this.txt_groupname.Size = new System.Drawing.Size(146, 25);
  929. this.txt_groupname.TabIndex = 10;
  930. //
  931. // label11
  932. //
  933. this.label11.AutoSize = true;
  934. this.label11.Location = new System.Drawing.Point(36, 167);
  935. this.label11.Name = "label11";
  936. this.label11.Size = new System.Drawing.Size(67, 15);
  937. this.label11.TabIndex = 9;
  938. this.label11.Text = "群名称:";
  939. //
  940. // button8
  941. //
  942. this.button8.Location = new System.Drawing.Point(539, 106);
  943. this.button8.Name = "button8";
  944. this.button8.Size = new System.Drawing.Size(114, 25);
  945. this.button8.TabIndex = 8;
  946. this.button8.Text = "踢出群成员";
  947. this.button8.UseVisualStyleBackColor = true;
  948. this.button8.Click += new System.EventHandler(this.button8_Click);
  949. //
  950. // txt_groupwxid
  951. //
  952. this.txt_groupwxid.Location = new System.Drawing.Point(109, 67);
  953. this.txt_groupwxid.Name = "txt_groupwxid";
  954. this.txt_groupwxid.Size = new System.Drawing.Size(205, 25);
  955. this.txt_groupwxid.TabIndex = 7;
  956. this.txt_groupwxid.Text = "222@chatroom";
  957. //
  958. // label9
  959. //
  960. this.label9.AutoSize = true;
  961. this.label9.Location = new System.Drawing.Point(26, 77);
  962. this.label9.Name = "label9";
  963. this.label9.Size = new System.Drawing.Size(46, 15);
  964. this.label9.TabIndex = 6;
  965. this.label9.Text = "群id:";
  966. //
  967. // button7
  968. //
  969. this.button7.Location = new System.Drawing.Point(270, 108);
  970. this.button7.Name = "button7";
  971. this.button7.Size = new System.Drawing.Size(104, 25);
  972. this.button7.TabIndex = 5;
  973. this.button7.Text = "添加群成员";
  974. this.button7.UseVisualStyleBackColor = true;
  975. this.button7.Click += new System.EventHandler(this.button7_Click);
  976. //
  977. // txt_groupuserwxid
  978. //
  979. this.txt_groupuserwxid.Location = new System.Drawing.Point(109, 108);
  980. this.txt_groupuserwxid.Name = "txt_groupuserwxid";
  981. this.txt_groupuserwxid.Size = new System.Drawing.Size(146, 25);
  982. this.txt_groupuserwxid.TabIndex = 4;
  983. this.txt_groupuserwxid.Text = "wxid_111";
  984. //
  985. // label8
  986. //
  987. this.label8.AutoSize = true;
  988. this.label8.Location = new System.Drawing.Point(26, 118);
  989. this.label8.Name = "label8";
  990. this.label8.Size = new System.Drawing.Size(77, 15);
  991. this.label8.TabIndex = 3;
  992. this.label8.Text = "好友wxid:";
  993. //
  994. // button6
  995. //
  996. this.button6.Location = new System.Drawing.Point(341, 14);
  997. this.button6.Name = "button6";
  998. this.button6.Size = new System.Drawing.Size(84, 29);
  999. this.button6.TabIndex = 2;
  1000. this.button6.Text = "创建群";
  1001. this.button6.UseVisualStyleBackColor = true;
  1002. this.button6.Click += new System.EventHandler(this.button6_Click);
  1003. //
  1004. // txt_GroupUsers
  1005. //
  1006. this.txt_GroupUsers.Location = new System.Drawing.Point(109, 18);
  1007. this.txt_GroupUsers.Name = "txt_GroupUsers";
  1008. this.txt_GroupUsers.Size = new System.Drawing.Size(205, 25);
  1009. this.txt_GroupUsers.TabIndex = 1;
  1010. this.txt_GroupUsers.Text = "[\"wxid_aaa\",\"wxid_bbb\"]";
  1011. //
  1012. // label7
  1013. //
  1014. this.label7.AutoSize = true;
  1015. this.label7.Location = new System.Drawing.Point(26, 21);
  1016. this.label7.Name = "label7";
  1017. this.label7.Size = new System.Drawing.Size(77, 15);
  1018. this.label7.TabIndex = 0;
  1019. this.label7.Text = "好友wxid:";
  1020. //
  1021. // tabPage5
  1022. //
  1023. this.tabPage5.Controls.Add(this.button20);
  1024. this.tabPage5.Controls.Add(this.button19);
  1025. this.tabPage5.Controls.Add(this.button18);
  1026. this.tabPage5.Controls.Add(this.button13);
  1027. this.tabPage5.Controls.Add(this.button12);
  1028. this.tabPage5.Controls.Add(this.txt_loginToken);
  1029. this.tabPage5.Controls.Add(this.label15);
  1030. this.tabPage5.Controls.Add(this.txt_login62);
  1031. this.tabPage5.Controls.Add(this.label14);
  1032. this.tabPage5.Controls.Add(this.txt_loginPassword);
  1033. this.tabPage5.Controls.Add(this.label13);
  1034. this.tabPage5.Controls.Add(this.txt_loginName);
  1035. this.tabPage5.Controls.Add(this.label12);
  1036. this.tabPage5.Location = new System.Drawing.Point(4, 25);
  1037. this.tabPage5.Name = "tabPage5";
  1038. this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
  1039. this.tabPage5.Size = new System.Drawing.Size(765, 396);
  1040. this.tabPage5.TabIndex = 4;
  1041. this.tabPage5.Text = "二次登陆";
  1042. this.tabPage5.UseVisualStyleBackColor = true;
  1043. //
  1044. // button20
  1045. //
  1046. this.button20.Location = new System.Drawing.Point(359, 271);
  1047. this.button20.Name = "button20";
  1048. this.button20.Size = new System.Drawing.Size(124, 35);
  1049. this.button20.TabIndex = 12;
  1050. this.button20.Text = "断线重连";
  1051. this.button20.UseVisualStyleBackColor = true;
  1052. this.button20.Click += new System.EventHandler(this.button20_Click);
  1053. //
  1054. // button19
  1055. //
  1056. this.button19.Location = new System.Drawing.Point(359, 210);
  1057. this.button19.Name = "button19";
  1058. this.button19.Size = new System.Drawing.Size(167, 37);
  1059. this.button19.TabIndex = 11;
  1060. this.button19.Text = "扫码62token二次登录";
  1061. this.button19.UseVisualStyleBackColor = true;
  1062. this.button19.Click += new System.EventHandler(this.button19_Click);
  1063. //
  1064. // button18
  1065. //
  1066. this.button18.Location = new System.Drawing.Point(359, 149);
  1067. this.button18.Name = "button18";
  1068. this.button18.Size = new System.Drawing.Size(124, 37);
  1069. this.button18.TabIndex = 10;
  1070. this.button18.Text = "获取token";
  1071. this.button18.UseVisualStyleBackColor = true;
  1072. this.button18.Click += new System.EventHandler(this.button18_Click);
  1073. //
  1074. // button13
  1075. //
  1076. this.button13.Location = new System.Drawing.Point(359, 87);
  1077. this.button13.Name = "button13";
  1078. this.button13.Size = new System.Drawing.Size(124, 38);
  1079. this.button13.TabIndex = 9;
  1080. this.button13.Text = "账号密码62登陆";
  1081. this.button13.UseVisualStyleBackColor = true;
  1082. this.button13.Click += new System.EventHandler(this.button13_Click);
  1083. //
  1084. // button12
  1085. //
  1086. this.button12.Location = new System.Drawing.Point(359, 24);
  1087. this.button12.Name = "button12";
  1088. this.button12.Size = new System.Drawing.Size(124, 39);
  1089. this.button12.TabIndex = 8;
  1090. this.button12.Text = "获取62数据";
  1091. this.button12.UseVisualStyleBackColor = true;
  1092. this.button12.Click += new System.EventHandler(this.button12_Click);
  1093. //
  1094. // txt_loginToken
  1095. //
  1096. this.txt_loginToken.Location = new System.Drawing.Point(93, 194);
  1097. this.txt_loginToken.Name = "txt_loginToken";
  1098. this.txt_loginToken.Size = new System.Drawing.Size(179, 25);
  1099. this.txt_loginToken.TabIndex = 7;
  1100. //
  1101. // label15
  1102. //
  1103. this.label15.AutoSize = true;
  1104. this.label15.Location = new System.Drawing.Point(19, 197);
  1105. this.label15.Name = "label15";
  1106. this.label15.Size = new System.Drawing.Size(62, 15);
  1107. this.label15.TabIndex = 6;
  1108. this.label15.Text = "Token:";
  1109. //
  1110. // txt_login62
  1111. //
  1112. this.txt_login62.Location = new System.Drawing.Point(93, 135);
  1113. this.txt_login62.Name = "txt_login62";
  1114. this.txt_login62.Size = new System.Drawing.Size(179, 25);
  1115. this.txt_login62.TabIndex = 5;
  1116. //
  1117. // label14
  1118. //
  1119. this.label14.AutoSize = true;
  1120. this.label14.Location = new System.Drawing.Point(19, 138);
  1121. this.label14.Name = "label14";
  1122. this.label14.Size = new System.Drawing.Size(68, 15);
  1123. this.label14.TabIndex = 4;
  1124. this.label14.Text = "62数据:";
  1125. //
  1126. // txt_loginPassword
  1127. //
  1128. this.txt_loginPassword.Location = new System.Drawing.Point(93, 78);
  1129. this.txt_loginPassword.Name = "txt_loginPassword";
  1130. this.txt_loginPassword.Size = new System.Drawing.Size(179, 25);
  1131. this.txt_loginPassword.TabIndex = 3;
  1132. //
  1133. // label13
  1134. //
  1135. this.label13.AutoSize = true;
  1136. this.label13.Location = new System.Drawing.Point(35, 81);
  1137. this.label13.Name = "label13";
  1138. this.label13.Size = new System.Drawing.Size(52, 15);
  1139. this.label13.TabIndex = 2;
  1140. this.label13.Text = "密码:";
  1141. //
  1142. // txt_loginName
  1143. //
  1144. this.txt_loginName.Location = new System.Drawing.Point(93, 24);
  1145. this.txt_loginName.Name = "txt_loginName";
  1146. this.txt_loginName.Size = new System.Drawing.Size(179, 25);
  1147. this.txt_loginName.TabIndex = 1;
  1148. //
  1149. // label12
  1150. //
  1151. this.label12.AutoSize = true;
  1152. this.label12.Location = new System.Drawing.Point(35, 27);
  1153. this.label12.Name = "label12";
  1154. this.label12.Size = new System.Drawing.Size(52, 15);
  1155. this.label12.TabIndex = 0;
  1156. this.label12.Text = "账号:";
  1157. //
  1158. // tabPage6
  1159. //
  1160. this.tabPage6.Controls.Add(this.button47);
  1161. this.tabPage6.Controls.Add(this.txt_addUserInfo);
  1162. this.tabPage6.Controls.Add(this.label55);
  1163. this.tabPage6.Controls.Add(this.button16);
  1164. this.tabPage6.Controls.Add(this.label21);
  1165. this.tabPage6.Controls.Add(this.cb_addtype);
  1166. this.tabPage6.Controls.Add(this.txt_hellotext);
  1167. this.tabPage6.Controls.Add(this.label20);
  1168. this.tabPage6.Controls.Add(this.txt_v2);
  1169. this.tabPage6.Controls.Add(this.label19);
  1170. this.tabPage6.Controls.Add(this.txt_v1);
  1171. this.tabPage6.Controls.Add(this.label18);
  1172. this.tabPage6.Controls.Add(this.button15);
  1173. this.tabPage6.Controls.Add(this.txt_Lng);
  1174. this.tabPage6.Controls.Add(this.label17);
  1175. this.tabPage6.Controls.Add(this.txt_Lat);
  1176. this.tabPage6.Controls.Add(this.label16);
  1177. this.tabPage6.Location = new System.Drawing.Point(4, 25);
  1178. this.tabPage6.Name = "tabPage6";
  1179. this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
  1180. this.tabPage6.Size = new System.Drawing.Size(765, 396);
  1181. this.tabPage6.TabIndex = 5;
  1182. this.tabPage6.Text = "加粉引流";
  1183. this.tabPage6.UseVisualStyleBackColor = true;
  1184. //
  1185. // button47
  1186. //
  1187. this.button47.Location = new System.Drawing.Point(371, 228);
  1188. this.button47.Name = "button47";
  1189. this.button47.Size = new System.Drawing.Size(106, 27);
  1190. this.button47.TabIndex = 17;
  1191. this.button47.Text = "搜索";
  1192. this.button47.UseVisualStyleBackColor = true;
  1193. this.button47.Click += new System.EventHandler(this.button47_Click);
  1194. //
  1195. // txt_addUserInfo
  1196. //
  1197. this.txt_addUserInfo.Location = new System.Drawing.Point(167, 230);
  1198. this.txt_addUserInfo.Name = "txt_addUserInfo";
  1199. this.txt_addUserInfo.Size = new System.Drawing.Size(179, 25);
  1200. this.txt_addUserInfo.TabIndex = 16;
  1201. //
  1202. // label55
  1203. //
  1204. this.label55.AutoSize = true;
  1205. this.label55.Location = new System.Drawing.Point(33, 233);
  1206. this.label55.Name = "label55";
  1207. this.label55.Size = new System.Drawing.Size(136, 15);
  1208. this.label55.TabIndex = 15;
  1209. this.label55.Text = "微信号手机号QQ号:";
  1210. //
  1211. // button16
  1212. //
  1213. this.button16.Location = new System.Drawing.Point(643, 222);
  1214. this.button16.Name = "button16";
  1215. this.button16.Size = new System.Drawing.Size(90, 41);
  1216. this.button16.TabIndex = 14;
  1217. this.button16.Text = "添加";
  1218. this.button16.UseVisualStyleBackColor = true;
  1219. this.button16.Click += new System.EventHandler(this.button16_Click);
  1220. //
  1221. // label21
  1222. //
  1223. this.label21.AutoSize = true;
  1224. this.label21.Location = new System.Drawing.Point(353, 180);
  1225. this.label21.Name = "label21";
  1226. this.label21.Size = new System.Drawing.Size(82, 15);
  1227. this.label21.TabIndex = 13;
  1228. this.label21.Text = "添加方式:";
  1229. //
  1230. // cb_addtype
  1231. //
  1232. this.cb_addtype.FormattingEnabled = true;
  1233. this.cb_addtype.Items.AddRange(new object[] {
  1234. "1-通过QQ好友添加--可以",
  1235. "2-通过搜索邮箱--可加但无提示",
  1236. "3-通过微信号搜索--可以",
  1237. "5-通过朋友验证消息-可加但无提示",
  1238. "7-通过朋友验证消息(可回复)-可加但无提示",
  1239. "12-来自QQ好友--可以",
  1240. "13-通过手机通讯录添加--可以",
  1241. "14-通过群来源--no",
  1242. "15-通过搜索手机号--可以",
  1243. "16-通过朋友验证消息-可加但无提示",
  1244. "17-通过名片分享--no",
  1245. "18-通过附近的人--可以(貌似只需要v1就够了)",
  1246. "22-通过摇一摇打招呼方式--可以",
  1247. "25-通过漂流瓶---no",
  1248. "30-通过二维码方式--可以"});
  1249. this.cb_addtype.Location = new System.Drawing.Point(441, 179);
  1250. this.cb_addtype.Name = "cb_addtype";
  1251. this.cb_addtype.Size = new System.Drawing.Size(274, 23);
  1252. this.cb_addtype.TabIndex = 12;
  1253. //
  1254. // txt_hellotext
  1255. //
  1256. this.txt_hellotext.Location = new System.Drawing.Point(92, 177);
  1257. this.txt_hellotext.Name = "txt_hellotext";
  1258. this.txt_hellotext.Size = new System.Drawing.Size(219, 25);
  1259. this.txt_hellotext.TabIndex = 11;
  1260. //
  1261. // label20
  1262. //
  1263. this.label20.AutoSize = true;
  1264. this.label20.Location = new System.Drawing.Point(33, 180);
  1265. this.label20.Name = "label20";
  1266. this.label20.Size = new System.Drawing.Size(67, 15);
  1267. this.label20.TabIndex = 10;
  1268. this.label20.Text = "打招呼:";
  1269. //
  1270. // txt_v2
  1271. //
  1272. this.txt_v2.Location = new System.Drawing.Point(92, 137);
  1273. this.txt_v2.Name = "txt_v2";
  1274. this.txt_v2.Size = new System.Drawing.Size(653, 25);
  1275. this.txt_v2.TabIndex = 9;
  1276. //
  1277. // label19
  1278. //
  1279. this.label19.AutoSize = true;
  1280. this.label19.Location = new System.Drawing.Point(33, 140);
  1281. this.label19.Name = "label19";
  1282. this.label19.Size = new System.Drawing.Size(38, 15);
  1283. this.label19.TabIndex = 8;
  1284. this.label19.Text = "v2:";
  1285. //
  1286. // txt_v1
  1287. //
  1288. this.txt_v1.Location = new System.Drawing.Point(92, 102);
  1289. this.txt_v1.Name = "txt_v1";
  1290. this.txt_v1.Size = new System.Drawing.Size(653, 25);
  1291. this.txt_v1.TabIndex = 7;
  1292. //
  1293. // label18
  1294. //
  1295. this.label18.AutoSize = true;
  1296. this.label18.Location = new System.Drawing.Point(33, 105);
  1297. this.label18.Name = "label18";
  1298. this.label18.Size = new System.Drawing.Size(38, 15);
  1299. this.label18.TabIndex = 6;
  1300. this.label18.Text = "v1:";
  1301. //
  1302. // button15
  1303. //
  1304. this.button15.Location = new System.Drawing.Point(441, 18);
  1305. this.button15.Name = "button15";
  1306. this.button15.Size = new System.Drawing.Size(142, 26);
  1307. this.button15.TabIndex = 4;
  1308. this.button15.Text = "查看附近的人";
  1309. this.button15.UseVisualStyleBackColor = true;
  1310. this.button15.Click += new System.EventHandler(this.button15_Click);
  1311. //
  1312. // txt_Lng
  1313. //
  1314. this.txt_Lng.Location = new System.Drawing.Point(283, 18);
  1315. this.txt_Lng.Name = "txt_Lng";
  1316. this.txt_Lng.Size = new System.Drawing.Size(100, 25);
  1317. this.txt_Lng.TabIndex = 3;
  1318. this.txt_Lng.Text = "118.538361";
  1319. //
  1320. // label17
  1321. //
  1322. this.label17.AutoSize = true;
  1323. this.label17.Location = new System.Drawing.Point(227, 19);
  1324. this.label17.Name = "label17";
  1325. this.label17.Size = new System.Drawing.Size(39, 15);
  1326. this.label17.TabIndex = 2;
  1327. this.label17.Text = "Lng:";
  1328. //
  1329. // txt_Lat
  1330. //
  1331. this.txt_Lat.Location = new System.Drawing.Point(92, 19);
  1332. this.txt_Lat.Name = "txt_Lat";
  1333. this.txt_Lat.Size = new System.Drawing.Size(100, 25);
  1334. this.txt_Lat.TabIndex = 1;
  1335. this.txt_Lat.Text = "24.911349";
  1336. //
  1337. // label16
  1338. //
  1339. this.label16.AutoSize = true;
  1340. this.label16.Location = new System.Drawing.Point(30, 19);
  1341. this.label16.Name = "label16";
  1342. this.label16.Size = new System.Drawing.Size(39, 15);
  1343. this.label16.TabIndex = 0;
  1344. this.label16.Text = "Lat:";
  1345. //
  1346. // tabPage8
  1347. //
  1348. this.tabPage8.Controls.Add(this.button45);
  1349. this.tabPage8.Controls.Add(this.txt_gzhUrl);
  1350. this.tabPage8.Controls.Add(this.label47);
  1351. this.tabPage8.Controls.Add(this.button40);
  1352. this.tabPage8.Controls.Add(this.txt_gzhKey);
  1353. this.tabPage8.Controls.Add(this.label43);
  1354. this.tabPage8.Controls.Add(this.txt_gzhUin);
  1355. this.tabPage8.Controls.Add(this.label42);
  1356. this.tabPage8.Controls.Add(this.lb_gzh);
  1357. this.tabPage8.Controls.Add(this.button22);
  1358. this.tabPage8.Controls.Add(this.button21);
  1359. this.tabPage8.Controls.Add(this.txt_gzhid);
  1360. this.tabPage8.Controls.Add(this.label22);
  1361. this.tabPage8.Location = new System.Drawing.Point(4, 25);
  1362. this.tabPage8.Name = "tabPage8";
  1363. this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
  1364. this.tabPage8.Size = new System.Drawing.Size(765, 396);
  1365. this.tabPage8.TabIndex = 7;
  1366. this.tabPage8.Text = "公众号";
  1367. this.tabPage8.UseVisualStyleBackColor = true;
  1368. //
  1369. // button45
  1370. //
  1371. this.button45.Location = new System.Drawing.Point(594, 168);
  1372. this.button45.Name = "button45";
  1373. this.button45.Size = new System.Drawing.Size(121, 25);
  1374. this.button45.TabIndex = 13;
  1375. this.button45.Text = "阅读";
  1376. this.button45.UseVisualStyleBackColor = true;
  1377. this.button45.Click += new System.EventHandler(this.button45_Click);
  1378. //
  1379. // txt_gzhUrl
  1380. //
  1381. this.txt_gzhUrl.Location = new System.Drawing.Point(375, 168);
  1382. this.txt_gzhUrl.Name = "txt_gzhUrl";
  1383. this.txt_gzhUrl.Size = new System.Drawing.Size(198, 25);
  1384. this.txt_gzhUrl.TabIndex = 12;
  1385. //
  1386. // label47
  1387. //
  1388. this.label47.AutoSize = true;
  1389. this.label47.Location = new System.Drawing.Point(322, 171);
  1390. this.label47.Name = "label47";
  1391. this.label47.Size = new System.Drawing.Size(47, 15);
  1392. this.label47.TabIndex = 11;
  1393. this.label47.Text = "url: ";
  1394. //
  1395. // button40
  1396. //
  1397. this.button40.Location = new System.Drawing.Point(594, 77);
  1398. this.button40.Name = "button40";
  1399. this.button40.Size = new System.Drawing.Size(138, 39);
  1400. this.button40.TabIndex = 10;
  1401. this.button40.Text = "执行公众号菜单";
  1402. this.button40.UseVisualStyleBackColor = true;
  1403. this.button40.Click += new System.EventHandler(this.button40_Click);
  1404. //
  1405. // txt_gzhKey
  1406. //
  1407. this.txt_gzhKey.Location = new System.Drawing.Point(375, 110);
  1408. this.txt_gzhKey.Name = "txt_gzhKey";
  1409. this.txt_gzhKey.Size = new System.Drawing.Size(198, 25);
  1410. this.txt_gzhKey.TabIndex = 9;
  1411. //
  1412. // label43
  1413. //
  1414. this.label43.AutoSize = true;
  1415. this.label43.Location = new System.Drawing.Point(322, 113);
  1416. this.label43.Name = "label43";
  1417. this.label43.Size = new System.Drawing.Size(47, 15);
  1418. this.label43.TabIndex = 8;
  1419. this.label43.Text = "key: ";
  1420. //
  1421. // txt_gzhUin
  1422. //
  1423. this.txt_gzhUin.Location = new System.Drawing.Point(375, 62);
  1424. this.txt_gzhUin.Name = "txt_gzhUin";
  1425. this.txt_gzhUin.Size = new System.Drawing.Size(198, 25);
  1426. this.txt_gzhUin.TabIndex = 7;
  1427. //
  1428. // label42
  1429. //
  1430. this.label42.AutoSize = true;
  1431. this.label42.Location = new System.Drawing.Point(322, 65);
  1432. this.label42.Name = "label42";
  1433. this.label42.Size = new System.Drawing.Size(47, 15);
  1434. this.label42.TabIndex = 6;
  1435. this.label42.Text = "uin: ";
  1436. //
  1437. // lb_gzh
  1438. //
  1439. this.lb_gzh.FormattingEnabled = true;
  1440. this.lb_gzh.ItemHeight = 15;
  1441. this.lb_gzh.Location = new System.Drawing.Point(26, 46);
  1442. this.lb_gzh.Name = "lb_gzh";
  1443. this.lb_gzh.Size = new System.Drawing.Size(229, 199);
  1444. this.lb_gzh.TabIndex = 5;
  1445. //
  1446. // button22
  1447. //
  1448. this.button22.Location = new System.Drawing.Point(541, 15);
  1449. this.button22.Name = "button22";
  1450. this.button22.Size = new System.Drawing.Size(121, 23);
  1451. this.button22.TabIndex = 4;
  1452. this.button22.Text = "获取公众号内容";
  1453. this.button22.UseVisualStyleBackColor = true;
  1454. this.button22.Click += new System.EventHandler(this.button22_Click);
  1455. //
  1456. // button21
  1457. //
  1458. this.button21.Location = new System.Drawing.Point(422, 15);
  1459. this.button21.Name = "button21";
  1460. this.button21.Size = new System.Drawing.Size(112, 24);
  1461. this.button21.TabIndex = 2;
  1462. this.button21.Text = "关注公众号";
  1463. this.button21.UseVisualStyleBackColor = true;
  1464. this.button21.Click += new System.EventHandler(this.button21_Click);
  1465. //
  1466. // txt_gzhid
  1467. //
  1468. this.txt_gzhid.Location = new System.Drawing.Point(197, 14);
  1469. this.txt_gzhid.Name = "txt_gzhid";
  1470. this.txt_gzhid.Size = new System.Drawing.Size(198, 25);
  1471. this.txt_gzhid.TabIndex = 1;
  1472. //
  1473. // label22
  1474. //
  1475. this.label22.AutoSize = true;
  1476. this.label22.Location = new System.Drawing.Point(23, 17);
  1477. this.label22.Name = "label22";
  1478. this.label22.Size = new System.Drawing.Size(156, 15);
  1479. this.label22.TabIndex = 0;
  1480. this.label22.Text = "公众号id: gh_xxxxxx";
  1481. //
  1482. // tabPage7
  1483. //
  1484. this.tabPage7.Controls.Add(this.txt_msgcallback);
  1485. this.tabPage7.Location = new System.Drawing.Point(4, 25);
  1486. this.tabPage7.Name = "tabPage7";
  1487. this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
  1488. this.tabPage7.Size = new System.Drawing.Size(765, 396);
  1489. this.tabPage7.TabIndex = 8;
  1490. this.tabPage7.Text = "收消息回调";
  1491. this.tabPage7.UseVisualStyleBackColor = true;
  1492. //
  1493. // txt_msgcallback
  1494. //
  1495. this.txt_msgcallback.Location = new System.Drawing.Point(6, 6);
  1496. this.txt_msgcallback.Multiline = true;
  1497. this.txt_msgcallback.Name = "txt_msgcallback";
  1498. this.txt_msgcallback.Size = new System.Drawing.Size(753, 384);
  1499. this.txt_msgcallback.TabIndex = 0;
  1500. //
  1501. // tabPage9
  1502. //
  1503. this.tabPage9.Controls.Add(this.button28);
  1504. this.tabPage9.Controls.Add(this.txt_labelId1);
  1505. this.tabPage9.Controls.Add(this.label33);
  1506. this.tabPage9.Controls.Add(this.button27);
  1507. this.tabPage9.Controls.Add(this.txt_labelName);
  1508. this.tabPage9.Controls.Add(this.label32);
  1509. this.tabPage9.Controls.Add(this.button26);
  1510. this.tabPage9.Controls.Add(this.txt_labelId);
  1511. this.tabPage9.Controls.Add(this.label31);
  1512. this.tabPage9.Controls.Add(this.txt_labelWxid);
  1513. this.tabPage9.Controls.Add(this.label30);
  1514. this.tabPage9.Controls.Add(this.button25);
  1515. this.tabPage9.Location = new System.Drawing.Point(4, 25);
  1516. this.tabPage9.Name = "tabPage9";
  1517. this.tabPage9.Padding = new System.Windows.Forms.Padding(3);
  1518. this.tabPage9.Size = new System.Drawing.Size(765, 396);
  1519. this.tabPage9.TabIndex = 9;
  1520. this.tabPage9.Text = "用户标签";
  1521. this.tabPage9.UseVisualStyleBackColor = true;
  1522. //
  1523. // button28
  1524. //
  1525. this.button28.Location = new System.Drawing.Point(479, 112);
  1526. this.button28.Name = "button28";
  1527. this.button28.Size = new System.Drawing.Size(95, 25);
  1528. this.button28.TabIndex = 12;
  1529. this.button28.Text = "删除标签";
  1530. this.button28.UseVisualStyleBackColor = true;
  1531. this.button28.Click += new System.EventHandler(this.button28_Click);
  1532. //
  1533. // txt_labelId1
  1534. //
  1535. this.txt_labelId1.Location = new System.Drawing.Point(322, 112);
  1536. this.txt_labelId1.Name = "txt_labelId1";
  1537. this.txt_labelId1.Size = new System.Drawing.Size(136, 25);
  1538. this.txt_labelId1.TabIndex = 11;
  1539. //
  1540. // label33
  1541. //
  1542. this.label33.AutoSize = true;
  1543. this.label33.Location = new System.Drawing.Point(255, 119);
  1544. this.label33.Name = "label33";
  1545. this.label33.Size = new System.Drawing.Size(61, 15);
  1546. this.label33.TabIndex = 10;
  1547. this.label33.Text = "标签id:";
  1548. //
  1549. // button27
  1550. //
  1551. this.button27.Location = new System.Drawing.Point(542, 63);
  1552. this.button27.Name = "button27";
  1553. this.button27.Size = new System.Drawing.Size(94, 27);
  1554. this.button27.TabIndex = 9;
  1555. this.button27.Text = "创建标签";
  1556. this.button27.UseVisualStyleBackColor = true;
  1557. this.button27.Click += new System.EventHandler(this.button27_Click);
  1558. //
  1559. // txt_labelName
  1560. //
  1561. this.txt_labelName.Location = new System.Drawing.Point(322, 65);
  1562. this.txt_labelName.Name = "txt_labelName";
  1563. this.txt_labelName.Size = new System.Drawing.Size(194, 25);
  1564. this.txt_labelName.TabIndex = 8;
  1565. //
  1566. // label32
  1567. //
  1568. this.label32.AutoSize = true;
  1569. this.label32.Location = new System.Drawing.Point(249, 68);
  1570. this.label32.Name = "label32";
  1571. this.label32.Size = new System.Drawing.Size(67, 15);
  1572. this.label32.TabIndex = 7;
  1573. this.label32.Text = "标签名:";
  1574. //
  1575. // button26
  1576. //
  1577. this.button26.Location = new System.Drawing.Point(664, 19);
  1578. this.button26.Name = "button26";
  1579. this.button26.Size = new System.Drawing.Size(75, 27);
  1580. this.button26.TabIndex = 6;
  1581. this.button26.Text = "设置标签";
  1582. this.button26.UseVisualStyleBackColor = true;
  1583. this.button26.Click += new System.EventHandler(this.button26_Click);
  1584. //
  1585. // txt_labelId
  1586. //
  1587. this.txt_labelId.Location = new System.Drawing.Point(521, 21);
  1588. this.txt_labelId.Name = "txt_labelId";
  1589. this.txt_labelId.Size = new System.Drawing.Size(136, 25);
  1590. this.txt_labelId.TabIndex = 5;
  1591. //
  1592. // label31
  1593. //
  1594. this.label31.AutoSize = true;
  1595. this.label31.Location = new System.Drawing.Point(454, 28);
  1596. this.label31.Name = "label31";
  1597. this.label31.Size = new System.Drawing.Size(61, 15);
  1598. this.label31.TabIndex = 4;
  1599. this.label31.Text = "标签id:";
  1600. //
  1601. // txt_labelWxid
  1602. //
  1603. this.txt_labelWxid.Location = new System.Drawing.Point(300, 21);
  1604. this.txt_labelWxid.Name = "txt_labelWxid";
  1605. this.txt_labelWxid.Size = new System.Drawing.Size(136, 25);
  1606. this.txt_labelWxid.TabIndex = 3;
  1607. //
  1608. // label30
  1609. //
  1610. this.label30.AutoSize = true;
  1611. this.label30.Location = new System.Drawing.Point(246, 28);
  1612. this.label30.Name = "label30";
  1613. this.label30.Size = new System.Drawing.Size(47, 15);
  1614. this.label30.TabIndex = 2;
  1615. this.label30.Text = "wxid:";
  1616. //
  1617. // button25
  1618. //
  1619. this.button25.Location = new System.Drawing.Point(24, 21);
  1620. this.button25.Name = "button25";
  1621. this.button25.Size = new System.Drawing.Size(127, 29);
  1622. this.button25.TabIndex = 0;
  1623. this.button25.Text = "获取标签列表";
  1624. this.button25.UseVisualStyleBackColor = true;
  1625. this.button25.Click += new System.EventHandler(this.button25_Click);
  1626. //
  1627. // tabPage10
  1628. //
  1629. this.tabPage10.Controls.Add(this.txt_favId);
  1630. this.tabPage10.Controls.Add(this.label36);
  1631. this.tabPage10.Controls.Add(this.button31);
  1632. this.tabPage10.Controls.Add(this.txt_favObject);
  1633. this.tabPage10.Controls.Add(this.label35);
  1634. this.tabPage10.Controls.Add(this.button30);
  1635. this.tabPage10.Controls.Add(this.txt_favKey);
  1636. this.tabPage10.Controls.Add(this.label34);
  1637. this.tabPage10.Controls.Add(this.button29);
  1638. this.tabPage10.Location = new System.Drawing.Point(4, 25);
  1639. this.tabPage10.Name = "tabPage10";
  1640. this.tabPage10.Padding = new System.Windows.Forms.Padding(3);
  1641. this.tabPage10.Size = new System.Drawing.Size(765, 396);
  1642. this.tabPage10.TabIndex = 10;
  1643. this.tabPage10.Text = "收藏";
  1644. this.tabPage10.UseVisualStyleBackColor = true;
  1645. //
  1646. // txt_favId
  1647. //
  1648. this.txt_favId.Location = new System.Drawing.Point(233, 121);
  1649. this.txt_favId.Name = "txt_favId";
  1650. this.txt_favId.Size = new System.Drawing.Size(138, 25);
  1651. this.txt_favId.TabIndex = 8;
  1652. //
  1653. // label36
  1654. //
  1655. this.label36.AutoSize = true;
  1656. this.label36.Location = new System.Drawing.Point(140, 124);
  1657. this.label36.Name = "label36";
  1658. this.label36.Size = new System.Drawing.Size(68, 15);
  1659. this.label36.TabIndex = 7;
  1660. this.label36.Text = "收藏id:";
  1661. //
  1662. // button31
  1663. //
  1664. this.button31.Location = new System.Drawing.Point(19, 114);
  1665. this.button31.Name = "button31";
  1666. this.button31.Size = new System.Drawing.Size(87, 34);
  1667. this.button31.TabIndex = 6;
  1668. this.button31.Text = "查看收藏";
  1669. this.button31.UseVisualStyleBackColor = true;
  1670. this.button31.Click += new System.EventHandler(this.button31_Click);
  1671. //
  1672. // txt_favObject
  1673. //
  1674. this.txt_favObject.Location = new System.Drawing.Point(233, 65);
  1675. this.txt_favObject.Name = "txt_favObject";
  1676. this.txt_favObject.Size = new System.Drawing.Size(512, 25);
  1677. this.txt_favObject.TabIndex = 5;
  1678. this.txt_favObject.Text = resources.GetString("txt_favObject.Text");
  1679. //
  1680. // label35
  1681. //
  1682. this.label35.AutoSize = true;
  1683. this.label35.Location = new System.Drawing.Point(140, 70);
  1684. this.label35.Name = "label35";
  1685. this.label35.Size = new System.Drawing.Size(76, 15);
  1686. this.label35.TabIndex = 4;
  1687. this.label35.Text = "收藏key:";
  1688. //
  1689. // button30
  1690. //
  1691. this.button30.Location = new System.Drawing.Point(19, 65);
  1692. this.button30.Name = "button30";
  1693. this.button30.Size = new System.Drawing.Size(87, 31);
  1694. this.button30.TabIndex = 3;
  1695. this.button30.Text = "添加收藏";
  1696. this.button30.UseVisualStyleBackColor = true;
  1697. this.button30.Click += new System.EventHandler(this.button30_Click);
  1698. //
  1699. // txt_favKey
  1700. //
  1701. this.txt_favKey.Location = new System.Drawing.Point(233, 19);
  1702. this.txt_favKey.Name = "txt_favKey";
  1703. this.txt_favKey.Size = new System.Drawing.Size(138, 25);
  1704. this.txt_favKey.TabIndex = 2;
  1705. //
  1706. // label34
  1707. //
  1708. this.label34.AutoSize = true;
  1709. this.label34.Location = new System.Drawing.Point(140, 24);
  1710. this.label34.Name = "label34";
  1711. this.label34.Size = new System.Drawing.Size(76, 15);
  1712. this.label34.TabIndex = 1;
  1713. this.label34.Text = "收藏key:";
  1714. //
  1715. // button29
  1716. //
  1717. this.button29.Location = new System.Drawing.Point(19, 17);
  1718. this.button29.Name = "button29";
  1719. this.button29.Size = new System.Drawing.Size(87, 28);
  1720. this.button29.TabIndex = 0;
  1721. this.button29.Text = "同步收藏";
  1722. this.button29.UseVisualStyleBackColor = true;
  1723. this.button29.Click += new System.EventHandler(this.button29_Click);
  1724. //
  1725. // tabPage11
  1726. //
  1727. this.tabPage11.Controls.Add(this.button46);
  1728. this.tabPage11.Controls.Add(this.label54);
  1729. this.tabPage11.Controls.Add(this.txt_setCity);
  1730. this.tabPage11.Controls.Add(this.label53);
  1731. this.tabPage11.Controls.Add(this.txt_setProvincia);
  1732. this.tabPage11.Controls.Add(this.label52);
  1733. this.tabPage11.Controls.Add(this.txt_setCountry);
  1734. this.tabPage11.Controls.Add(this.label51);
  1735. this.tabPage11.Controls.Add(this.label50);
  1736. this.tabPage11.Controls.Add(this.txt_setSex);
  1737. this.tabPage11.Controls.Add(this.label49);
  1738. this.tabPage11.Controls.Add(this.txt_setSign);
  1739. this.tabPage11.Controls.Add(this.label48);
  1740. this.tabPage11.Controls.Add(this.txt_setNickName);
  1741. this.tabPage11.Controls.Add(this.button41);
  1742. this.tabPage11.Controls.Add(this.label44);
  1743. this.tabPage11.Controls.Add(this.txt_setWxid);
  1744. this.tabPage11.Location = new System.Drawing.Point(4, 25);
  1745. this.tabPage11.Name = "tabPage11";
  1746. this.tabPage11.Padding = new System.Windows.Forms.Padding(3);
  1747. this.tabPage11.Size = new System.Drawing.Size(765, 396);
  1748. this.tabPage11.TabIndex = 11;
  1749. this.tabPage11.Text = "个人信息";
  1750. this.tabPage11.UseVisualStyleBackColor = true;
  1751. //
  1752. // button46
  1753. //
  1754. this.button46.Location = new System.Drawing.Point(370, 311);
  1755. this.button46.Name = "button46";
  1756. this.button46.Size = new System.Drawing.Size(98, 25);
  1757. this.button46.TabIndex = 16;
  1758. this.button46.Text = "设置资料";
  1759. this.button46.UseVisualStyleBackColor = true;
  1760. this.button46.Click += new System.EventHandler(this.button46_Click);
  1761. //
  1762. // label54
  1763. //
  1764. this.label54.AutoSize = true;
  1765. this.label54.Location = new System.Drawing.Point(65, 314);
  1766. this.label54.Name = "label54";
  1767. this.label54.Size = new System.Drawing.Size(52, 15);
  1768. this.label54.TabIndex = 15;
  1769. this.label54.Text = "城市:";
  1770. //
  1771. // txt_setCity
  1772. //
  1773. this.txt_setCity.Location = new System.Drawing.Point(123, 311);
  1774. this.txt_setCity.Name = "txt_setCity";
  1775. this.txt_setCity.Size = new System.Drawing.Size(220, 25);
  1776. this.txt_setCity.TabIndex = 14;
  1777. this.txt_setCity.Text = "guangzhou";
  1778. //
  1779. // label53
  1780. //
  1781. this.label53.AutoSize = true;
  1782. this.label53.Location = new System.Drawing.Point(65, 267);
  1783. this.label53.Name = "label53";
  1784. this.label53.Size = new System.Drawing.Size(52, 15);
  1785. this.label53.TabIndex = 13;
  1786. this.label53.Text = "省份:";
  1787. //
  1788. // txt_setProvincia
  1789. //
  1790. this.txt_setProvincia.Location = new System.Drawing.Point(123, 264);
  1791. this.txt_setProvincia.Name = "txt_setProvincia";
  1792. this.txt_setProvincia.Size = new System.Drawing.Size(220, 25);
  1793. this.txt_setProvincia.TabIndex = 12;
  1794. this.txt_setProvincia.Text = "guangdong";
  1795. //
  1796. // label52
  1797. //
  1798. this.label52.AutoSize = true;
  1799. this.label52.Location = new System.Drawing.Point(65, 223);
  1800. this.label52.Name = "label52";
  1801. this.label52.Size = new System.Drawing.Size(52, 15);
  1802. this.label52.TabIndex = 11;
  1803. this.label52.Text = "国籍:";
  1804. //
  1805. // txt_setCountry
  1806. //
  1807. this.txt_setCountry.Location = new System.Drawing.Point(123, 220);
  1808. this.txt_setCountry.Name = "txt_setCountry";
  1809. this.txt_setCountry.Size = new System.Drawing.Size(220, 25);
  1810. this.txt_setCountry.TabIndex = 10;
  1811. this.txt_setCountry.Text = "CN";
  1812. //
  1813. // label51
  1814. //
  1815. this.label51.AutoSize = true;
  1816. this.label51.Location = new System.Drawing.Point(367, 178);
  1817. this.label51.Name = "label51";
  1818. this.label51.Size = new System.Drawing.Size(38, 15);
  1819. this.label51.TabIndex = 9;
  1820. this.label51.Text = "0或1";
  1821. //
  1822. // label50
  1823. //
  1824. this.label50.AutoSize = true;
  1825. this.label50.Location = new System.Drawing.Point(65, 178);
  1826. this.label50.Name = "label50";
  1827. this.label50.Size = new System.Drawing.Size(52, 15);
  1828. this.label50.TabIndex = 8;
  1829. this.label50.Text = "性别:";
  1830. //
  1831. // txt_setSex
  1832. //
  1833. this.txt_setSex.Location = new System.Drawing.Point(123, 175);
  1834. this.txt_setSex.Name = "txt_setSex";
  1835. this.txt_setSex.Size = new System.Drawing.Size(220, 25);
  1836. this.txt_setSex.TabIndex = 7;
  1837. this.txt_setSex.Text = "1";
  1838. //
  1839. // label49
  1840. //
  1841. this.label49.AutoSize = true;
  1842. this.label49.Location = new System.Drawing.Point(65, 127);
  1843. this.label49.Name = "label49";
  1844. this.label49.Size = new System.Drawing.Size(52, 15);
  1845. this.label49.TabIndex = 6;
  1846. this.label49.Text = "签名:";
  1847. //
  1848. // txt_setSign
  1849. //
  1850. this.txt_setSign.Location = new System.Drawing.Point(123, 124);
  1851. this.txt_setSign.Name = "txt_setSign";
  1852. this.txt_setSign.Size = new System.Drawing.Size(220, 25);
  1853. this.txt_setSign.TabIndex = 5;
  1854. this.txt_setSign.Text = "微信协议看:https://github.com/changtuiqie/Mac.WeChat";
  1855. //
  1856. // label48
  1857. //
  1858. this.label48.AutoSize = true;
  1859. this.label48.Location = new System.Drawing.Point(65, 74);
  1860. this.label48.Name = "label48";
  1861. this.label48.Size = new System.Drawing.Size(52, 15);
  1862. this.label48.TabIndex = 4;
  1863. this.label48.Text = "昵称:";
  1864. //
  1865. // txt_setNickName
  1866. //
  1867. this.txt_setNickName.Location = new System.Drawing.Point(123, 71);
  1868. this.txt_setNickName.Name = "txt_setNickName";
  1869. this.txt_setNickName.Size = new System.Drawing.Size(220, 25);
  1870. this.txt_setNickName.TabIndex = 3;
  1871. this.txt_setNickName.Text = "MacWeChat";
  1872. //
  1873. // button41
  1874. //
  1875. this.button41.Location = new System.Drawing.Point(358, 24);
  1876. this.button41.Name = "button41";
  1877. this.button41.Size = new System.Drawing.Size(95, 26);
  1878. this.button41.TabIndex = 2;
  1879. this.button41.Text = "设置";
  1880. this.button41.UseVisualStyleBackColor = true;
  1881. this.button41.Click += new System.EventHandler(this.button41_Click);
  1882. //
  1883. // label44
  1884. //
  1885. this.label44.AutoSize = true;
  1886. this.label44.Location = new System.Drawing.Point(22, 28);
  1887. this.label44.Name = "label44";
  1888. this.label44.Size = new System.Drawing.Size(98, 15);
  1889. this.label44.TabIndex = 1;
  1890. this.label44.Text = "设置微信id:";
  1891. //
  1892. // txt_setWxid
  1893. //
  1894. this.txt_setWxid.Location = new System.Drawing.Point(123, 25);
  1895. this.txt_setWxid.Name = "txt_setWxid";
  1896. this.txt_setWxid.Size = new System.Drawing.Size(220, 25);
  1897. this.txt_setWxid.TabIndex = 0;
  1898. //
  1899. // tabPage12
  1900. //
  1901. this.tabPage12.Controls.Add(this.button44);
  1902. this.tabPage12.Controls.Add(this.button43);
  1903. this.tabPage12.Controls.Add(this.txt_orderUrl);
  1904. this.tabPage12.Controls.Add(this.label46);
  1905. this.tabPage12.Controls.Add(this.label45);
  1906. this.tabPage12.Controls.Add(this.button42);
  1907. this.tabPage12.Location = new System.Drawing.Point(4, 25);
  1908. this.tabPage12.Name = "tabPage12";
  1909. this.tabPage12.Padding = new System.Windows.Forms.Padding(3);
  1910. this.tabPage12.Size = new System.Drawing.Size(765, 396);
  1911. this.tabPage12.TabIndex = 12;
  1912. this.tabPage12.Text = "其他设备登录";
  1913. this.tabPage12.UseVisualStyleBackColor = true;
  1914. //
  1915. // button44
  1916. //
  1917. this.button44.Location = new System.Drawing.Point(404, 124);
  1918. this.button44.Name = "button44";
  1919. this.button44.Size = new System.Drawing.Size(113, 36);
  1920. this.button44.TabIndex = 6;
  1921. this.button44.Text = "确认登录";
  1922. this.button44.UseVisualStyleBackColor = true;
  1923. this.button44.Click += new System.EventHandler(this.button44_Click);
  1924. //
  1925. // button43
  1926. //
  1927. this.button43.Location = new System.Drawing.Point(404, 70);
  1928. this.button43.Name = "button43";
  1929. this.button43.Size = new System.Drawing.Size(113, 35);
  1930. this.button43.TabIndex = 5;
  1931. this.button43.Text = "登录";
  1932. this.button43.UseVisualStyleBackColor = true;
  1933. this.button43.Click += new System.EventHandler(this.button43_Click);
  1934. //
  1935. // txt_orderUrl
  1936. //
  1937. this.txt_orderUrl.Location = new System.Drawing.Point(66, 71);
  1938. this.txt_orderUrl.Name = "txt_orderUrl";
  1939. this.txt_orderUrl.Size = new System.Drawing.Size(319, 25);
  1940. this.txt_orderUrl.TabIndex = 4;
  1941. //
  1942. // label46
  1943. //
  1944. this.label46.AutoSize = true;
  1945. this.label46.Location = new System.Drawing.Point(21, 74);
  1946. this.label46.Name = "label46";
  1947. this.label46.Size = new System.Drawing.Size(39, 15);
  1948. this.label46.TabIndex = 3;
  1949. this.label46.Text = "url:";
  1950. //
  1951. // label45
  1952. //
  1953. this.label45.AutoSize = true;
  1954. this.label45.Location = new System.Drawing.Point(183, 27);
  1955. this.label45.Name = "label45";
  1956. this.label45.Size = new System.Drawing.Size(523, 15);
  1957. this.label45.TabIndex = 2;
  1958. this.label45.Text = "使用账号密码+62登录后 可以打开pc或web端的二维码获取URL后登录其他终端";
  1959. //
  1960. // button42
  1961. //
  1962. this.button42.Location = new System.Drawing.Point(21, 16);
  1963. this.button42.Name = "button42";
  1964. this.button42.Size = new System.Drawing.Size(145, 36);
  1965. this.button42.TabIndex = 0;
  1966. this.button42.Text = "获取二维码信息";
  1967. this.button42.UseVisualStyleBackColor = true;
  1968. this.button42.Click += new System.EventHandler(this.button42_Click);
  1969. //
  1970. // button14
  1971. //
  1972. this.button14.Location = new System.Drawing.Point(12, 390);
  1973. this.button14.Name = "button14";
  1974. this.button14.Size = new System.Drawing.Size(106, 44);
  1975. this.button14.TabIndex = 4;
  1976. this.button14.Text = "扫码登录";
  1977. this.button14.UseVisualStyleBackColor = true;
  1978. this.button14.Click += new System.EventHandler(this.button14_Click);
  1979. //
  1980. // txt_syslog
  1981. //
  1982. this.txt_syslog.Location = new System.Drawing.Point(15, 479);
  1983. this.txt_syslog.Multiline = true;
  1984. this.txt_syslog.Name = "txt_syslog";
  1985. this.txt_syslog.Size = new System.Drawing.Size(978, 143);
  1986. this.txt_syslog.TabIndex = 5;
  1987. //
  1988. // label56
  1989. //
  1990. this.label56.AutoSize = true;
  1991. this.label56.Location = new System.Drawing.Point(12, 450);
  1992. this.label56.Name = "label56";
  1993. this.label56.Size = new System.Drawing.Size(67, 15);
  1994. this.label56.TabIndex = 6;
  1995. this.label56.Text = "返回值:";
  1996. //
  1997. // FormDemo
  1998. //
  1999. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  2000. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2001. this.ClientSize = new System.Drawing.Size(1009, 634);
  2002. this.Controls.Add(this.label56);
  2003. this.Controls.Add(this.txt_syslog);
  2004. this.Controls.Add(this.button14);
  2005. this.Controls.Add(this.tabControl1);
  2006. this.Controls.Add(this.label1);
  2007. this.Controls.Add(this.textBox1);
  2008. this.Controls.Add(this.pictureBox1);
  2009. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  2010. this.MaximizeBox = false;
  2011. this.MinimizeBox = false;
  2012. this.Name = "FormDemo";
  2013. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  2014. this.Text = "Mac微信Demo";
  2015. this.Load += new System.EventHandler(this.FormDemo_Load);
  2016. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  2017. this.tabControl1.ResumeLayout(false);
  2018. this.tabPage1.ResumeLayout(false);
  2019. this.tabPage1.PerformLayout();
  2020. this.tabPage2.ResumeLayout(false);
  2021. this.tabPage2.PerformLayout();
  2022. this.tabPage3.ResumeLayout(false);
  2023. this.tabPage3.PerformLayout();
  2024. this.tabPage4.ResumeLayout(false);
  2025. this.tabPage4.PerformLayout();
  2026. this.tabPage5.ResumeLayout(false);
  2027. this.tabPage5.PerformLayout();
  2028. this.tabPage6.ResumeLayout(false);
  2029. this.tabPage6.PerformLayout();
  2030. this.tabPage8.ResumeLayout(false);
  2031. this.tabPage8.PerformLayout();
  2032. this.tabPage7.ResumeLayout(false);
  2033. this.tabPage7.PerformLayout();
  2034. this.tabPage9.ResumeLayout(false);
  2035. this.tabPage9.PerformLayout();
  2036. this.tabPage10.ResumeLayout(false);
  2037. this.tabPage10.PerformLayout();
  2038. this.tabPage11.ResumeLayout(false);
  2039. this.tabPage11.PerformLayout();
  2040. this.tabPage12.ResumeLayout(false);
  2041. this.tabPage12.PerformLayout();
  2042. this.ResumeLayout(false);
  2043. this.PerformLayout();
  2044. }
  2045. #endregion
  2046. private System.Windows.Forms.PictureBox pictureBox1;
  2047. private System.Windows.Forms.TextBox textBox1;
  2048. private System.Windows.Forms.Label label1;
  2049. private System.Windows.Forms.TabControl tabControl1;
  2050. private System.Windows.Forms.TabPage tabPage1;
  2051. private System.Windows.Forms.TabPage tabPage2;
  2052. private System.Windows.Forms.TextBox txt_msgWxid;
  2053. private System.Windows.Forms.Label label2;
  2054. private System.Windows.Forms.TextBox txt_msgText;
  2055. private System.Windows.Forms.Label label3;
  2056. private System.Windows.Forms.Button button1;
  2057. private System.Windows.Forms.Button button2;
  2058. private System.Windows.Forms.Label label4;
  2059. private System.Windows.Forms.Button button3;
  2060. private System.Windows.Forms.TextBox txt_snsText;
  2061. private System.Windows.Forms.Button button4;
  2062. private System.Windows.Forms.Button button5;
  2063. private System.Windows.Forms.ListBox listBox1;
  2064. private System.Windows.Forms.TabPage tabPage3;
  2065. private System.Windows.Forms.Label label5;
  2066. private System.Windows.Forms.ListBox lb_friend;
  2067. private System.Windows.Forms.TabPage tabPage4;
  2068. private System.Windows.Forms.Label label7;
  2069. private System.Windows.Forms.TextBox txt_GroupUsers;
  2070. private System.Windows.Forms.Button button6;
  2071. private System.Windows.Forms.TextBox txt_groupuserwxid;
  2072. private System.Windows.Forms.Label label8;
  2073. private System.Windows.Forms.Button button7;
  2074. private System.Windows.Forms.TextBox txt_groupwxid;
  2075. private System.Windows.Forms.Label label9;
  2076. private System.Windows.Forms.Button button8;
  2077. private System.Windows.Forms.TextBox txt_groupname;
  2078. private System.Windows.Forms.Label label11;
  2079. private System.Windows.Forms.Button button9;
  2080. private System.Windows.Forms.TextBox txt_groupgg;
  2081. private System.Windows.Forms.Label label10;
  2082. private System.Windows.Forms.Button button10;
  2083. private System.Windows.Forms.Button button11;
  2084. private System.Windows.Forms.TabPage tabPage5;
  2085. private System.Windows.Forms.Button button12;
  2086. private System.Windows.Forms.TextBox txt_loginToken;
  2087. private System.Windows.Forms.Label label15;
  2088. private System.Windows.Forms.TextBox txt_login62;
  2089. private System.Windows.Forms.Label label14;
  2090. private System.Windows.Forms.TextBox txt_loginPassword;
  2091. private System.Windows.Forms.Label label13;
  2092. private System.Windows.Forms.TextBox txt_loginName;
  2093. private System.Windows.Forms.Label label12;
  2094. private System.Windows.Forms.Button button13;
  2095. private System.Windows.Forms.Button button14;
  2096. private System.Windows.Forms.TabPage tabPage6;
  2097. private System.Windows.Forms.Label label17;
  2098. private System.Windows.Forms.TextBox txt_Lat;
  2099. private System.Windows.Forms.Label label16;
  2100. private System.Windows.Forms.Button button15;
  2101. private System.Windows.Forms.TextBox txt_Lng;
  2102. private System.Windows.Forms.TextBox txt_v2;
  2103. private System.Windows.Forms.Label label19;
  2104. private System.Windows.Forms.TextBox txt_v1;
  2105. private System.Windows.Forms.Label label18;
  2106. private System.Windows.Forms.TextBox txt_hellotext;
  2107. private System.Windows.Forms.Label label20;
  2108. private System.Windows.Forms.Label label21;
  2109. private System.Windows.Forms.ComboBox cb_addtype;
  2110. private System.Windows.Forms.Button button16;
  2111. private System.Windows.Forms.Button button17;
  2112. private System.Windows.Forms.Button button18;
  2113. private System.Windows.Forms.Button button19;
  2114. private System.Windows.Forms.Button button20;
  2115. private System.Windows.Forms.TabPage tabPage8;
  2116. private System.Windows.Forms.Label label22;
  2117. private System.Windows.Forms.Button button21;
  2118. private System.Windows.Forms.TextBox txt_gzhid;
  2119. private System.Windows.Forms.Button button22;
  2120. private System.Windows.Forms.ListBox lb_gzh;
  2121. private System.Windows.Forms.Button button23;
  2122. private System.Windows.Forms.TextBox txt_linkImgUrl;
  2123. private System.Windows.Forms.Label label28;
  2124. private System.Windows.Forms.TextBox txt_linkUrl;
  2125. private System.Windows.Forms.Label label27;
  2126. private System.Windows.Forms.TextBox txt_linkDesc;
  2127. private System.Windows.Forms.Label label26;
  2128. private System.Windows.Forms.TextBox txt_linkSdkVer;
  2129. private System.Windows.Forms.Label label25;
  2130. private System.Windows.Forms.TextBox txt_linkAppId;
  2131. private System.Windows.Forms.Label label24;
  2132. private System.Windows.Forms.TextBox txt_linkTitle;
  2133. private System.Windows.Forms.Label label23;
  2134. private System.Windows.Forms.Button button24;
  2135. private System.Windows.Forms.TabPage tabPage7;
  2136. private System.Windows.Forms.TextBox txt_msgcallback;
  2137. private System.Windows.Forms.Label label29;
  2138. private System.Windows.Forms.TabPage tabPage9;
  2139. private System.Windows.Forms.Button button25;
  2140. private System.Windows.Forms.Button button26;
  2141. private System.Windows.Forms.TextBox txt_labelId;
  2142. private System.Windows.Forms.Label label31;
  2143. private System.Windows.Forms.TextBox txt_labelWxid;
  2144. private System.Windows.Forms.Label label30;
  2145. private System.Windows.Forms.Button button27;
  2146. private System.Windows.Forms.TextBox txt_labelName;
  2147. private System.Windows.Forms.Label label32;
  2148. private System.Windows.Forms.Button button28;
  2149. private System.Windows.Forms.TextBox txt_labelId1;
  2150. private System.Windows.Forms.Label label33;
  2151. private System.Windows.Forms.TabPage tabPage10;
  2152. private System.Windows.Forms.Button button29;
  2153. private System.Windows.Forms.TextBox txt_favKey;
  2154. private System.Windows.Forms.Label label34;
  2155. private System.Windows.Forms.TextBox txt_favObject;
  2156. private System.Windows.Forms.Label label35;
  2157. private System.Windows.Forms.Button button30;
  2158. private System.Windows.Forms.Button button31;
  2159. private System.Windows.Forms.TextBox txt_favId;
  2160. private System.Windows.Forms.Label label36;
  2161. private System.Windows.Forms.TextBox txt_snswxid;
  2162. private System.Windows.Forms.Label label37;
  2163. private System.Windows.Forms.Button button32;
  2164. private System.Windows.Forms.Button button33;
  2165. private System.Windows.Forms.TextBox txt_snsId;
  2166. private System.Windows.Forms.Label label38;
  2167. private System.Windows.Forms.Button button34;
  2168. private System.Windows.Forms.TextBox txt_snsPlId;
  2169. private System.Windows.Forms.Label label39;
  2170. private System.Windows.Forms.TextBox txt_snsContext;
  2171. private System.Windows.Forms.Label label40;
  2172. private System.Windows.Forms.ListBox lb_group;
  2173. private System.Windows.Forms.TextBox txt_friendwxid;
  2174. private System.Windows.Forms.Label label6;
  2175. private System.Windows.Forms.Button button35;
  2176. private System.Windows.Forms.Button button36;
  2177. private System.Windows.Forms.TextBox txt_friendRemark;
  2178. private System.Windows.Forms.Label label41;
  2179. private System.Windows.Forms.Button button37;
  2180. private System.Windows.Forms.Button button38;
  2181. private System.Windows.Forms.Button button39;
  2182. private System.Windows.Forms.TextBox txt_gzhKey;
  2183. private System.Windows.Forms.Label label43;
  2184. private System.Windows.Forms.TextBox txt_gzhUin;
  2185. private System.Windows.Forms.Label label42;
  2186. private System.Windows.Forms.Button button40;
  2187. private System.Windows.Forms.TabPage tabPage11;
  2188. private System.Windows.Forms.Button button41;
  2189. private System.Windows.Forms.Label label44;
  2190. private System.Windows.Forms.TextBox txt_setWxid;
  2191. private System.Windows.Forms.TabPage tabPage12;
  2192. private System.Windows.Forms.Button button42;
  2193. private System.Windows.Forms.Button button43;
  2194. private System.Windows.Forms.TextBox txt_orderUrl;
  2195. private System.Windows.Forms.Label label46;
  2196. private System.Windows.Forms.Label label45;
  2197. private System.Windows.Forms.Button button44;
  2198. private System.Windows.Forms.TextBox txt_gzhUrl;
  2199. private System.Windows.Forms.Label label47;
  2200. private System.Windows.Forms.Button button45;
  2201. private System.Windows.Forms.Label label51;
  2202. private System.Windows.Forms.Label label50;
  2203. private System.Windows.Forms.TextBox txt_setSex;
  2204. private System.Windows.Forms.Label label49;
  2205. private System.Windows.Forms.TextBox txt_setSign;
  2206. private System.Windows.Forms.Label label48;
  2207. private System.Windows.Forms.TextBox txt_setNickName;
  2208. private System.Windows.Forms.Label label54;
  2209. private System.Windows.Forms.TextBox txt_setCity;
  2210. private System.Windows.Forms.Label label53;
  2211. private System.Windows.Forms.TextBox txt_setProvincia;
  2212. private System.Windows.Forms.Label label52;
  2213. private System.Windows.Forms.TextBox txt_setCountry;
  2214. private System.Windows.Forms.Button button46;
  2215. private System.Windows.Forms.Button button47;
  2216. private System.Windows.Forms.TextBox txt_addUserInfo;
  2217. private System.Windows.Forms.Label label55;
  2218. private System.Windows.Forms.Button button48;
  2219. private System.Windows.Forms.Button button49;
  2220. private System.Windows.Forms.TextBox textBox2;
  2221. private System.Windows.Forms.TextBox textBox3;
  2222. private System.Windows.Forms.Label label57;
  2223. private System.Windows.Forms.TextBox txt_syslog;
  2224. private System.Windows.Forms.Label label56;
  2225. }
  2226. }