FormDemo.Designer.cs 103 KB

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