FormDemo.Designer.cs 91 KB

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