FormDemo.Designer.cs 101 KB

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