Form1.Designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. namespace ClickerWeb
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Обязательная переменная конструктора.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Освободить все используемые ресурсы.
  11. /// </summary>
  12. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</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
  22. /// <summary>
  23. /// Требуемый метод для поддержки конструктора — не изменяйте
  24. /// содержимое этого метода с помощью редактора кода.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  29. this.webBrowser1 = new System.Windows.Forms.WebBrowser();
  30. this.btn_start = new System.Windows.Forms.Button();
  31. this.listBox1 = new System.Windows.Forms.ListBox();
  32. this.btn_choose_file = new System.Windows.Forms.Button();
  33. this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
  34. this.textBox1 = new System.Windows.Forms.TextBox();
  35. this.label1 = new System.Windows.Forms.Label();
  36. this.comboBox1 = new System.Windows.Forms.ComboBox();
  37. this.btn_scheduler = new System.Windows.Forms.Button();
  38. this.textBox2 = new System.Windows.Forms.TextBox();
  39. this.btn_edit = new System.Windows.Forms.Button();
  40. this.btn_delete = new System.Windows.Forms.Button();
  41. this.btn_add = new System.Windows.Forms.Button();
  42. this.btn_clear = new System.Windows.Forms.Button();
  43. this.btnClear = new System.Windows.Forms.Button();
  44. this.picWeb = new System.Windows.Forms.PictureBox();
  45. this.picGit = new System.Windows.Forms.PictureBox();
  46. this.picTG = new System.Windows.Forms.PictureBox();
  47. ((System.ComponentModel.ISupportInitialize)(this.picWeb)).BeginInit();
  48. ((System.ComponentModel.ISupportInitialize)(this.picGit)).BeginInit();
  49. ((System.ComponentModel.ISupportInitialize)(this.picTG)).BeginInit();
  50. this.SuspendLayout();
  51. //
  52. // webBrowser1
  53. //
  54. this.webBrowser1.Location = new System.Drawing.Point(378, 58);
  55. this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
  56. this.webBrowser1.Name = "webBrowser1";
  57. this.webBrowser1.Size = new System.Drawing.Size(117, 81);
  58. this.webBrowser1.TabIndex = 0;
  59. this.webBrowser1.Visible = false;
  60. //
  61. // btn_start
  62. //
  63. this.btn_start.Cursor = System.Windows.Forms.Cursors.Hand;
  64. this.btn_start.ForeColor = System.Drawing.Color.Black;
  65. this.btn_start.Location = new System.Drawing.Point(12, 296);
  66. this.btn_start.Name = "btn_start";
  67. this.btn_start.Size = new System.Drawing.Size(75, 23);
  68. this.btn_start.TabIndex = 1;
  69. this.btn_start.Text = "Запуск";
  70. this.btn_start.UseVisualStyleBackColor = true;
  71. this.btn_start.Click += new System.EventHandler(this.btn_start_Click);
  72. //
  73. // listBox1
  74. //
  75. this.listBox1.BackColor = System.Drawing.SystemColors.Window;
  76. this.listBox1.ForeColor = System.Drawing.Color.Black;
  77. this.listBox1.FormattingEnabled = true;
  78. this.listBox1.HorizontalScrollbar = true;
  79. this.listBox1.ImeMode = System.Windows.Forms.ImeMode.Off;
  80. this.listBox1.Location = new System.Drawing.Point(12, 12);
  81. this.listBox1.Name = "listBox1";
  82. this.listBox1.Size = new System.Drawing.Size(360, 173);
  83. this.listBox1.TabIndex = 2;
  84. this.listBox1.Click += new System.EventHandler(this.listBox1_Click);
  85. //
  86. // btn_choose_file
  87. //
  88. this.btn_choose_file.Cursor = System.Windows.Forms.Cursors.Hand;
  89. this.btn_choose_file.ForeColor = System.Drawing.Color.Black;
  90. this.btn_choose_file.Location = new System.Drawing.Point(93, 296);
  91. this.btn_choose_file.Name = "btn_choose_file";
  92. this.btn_choose_file.Size = new System.Drawing.Size(98, 23);
  93. this.btn_choose_file.TabIndex = 6;
  94. this.btn_choose_file.Text = "Указать список";
  95. this.btn_choose_file.UseVisualStyleBackColor = true;
  96. this.btn_choose_file.Click += new System.EventHandler(this.btn_choose_file_Click);
  97. //
  98. // openFileDialog1
  99. //
  100. this.openFileDialog1.FileName = "openFileDialog1";
  101. this.openFileDialog1.Title = "ClickerWeb - выбор списка";
  102. //
  103. // textBox1
  104. //
  105. this.textBox1.BackColor = System.Drawing.SystemColors.Window;
  106. this.textBox1.ForeColor = System.Drawing.Color.Black;
  107. this.textBox1.Location = new System.Drawing.Point(155, 270);
  108. this.textBox1.Name = "textBox1";
  109. this.textBox1.Size = new System.Drawing.Size(100, 20);
  110. this.textBox1.TabIndex = 8;
  111. this.textBox1.Visible = false;
  112. //
  113. // label1
  114. //
  115. this.label1.ForeColor = System.Drawing.Color.Black;
  116. this.label1.Location = new System.Drawing.Point(12, 242);
  117. this.label1.Name = "label1";
  118. this.label1.Size = new System.Drawing.Size(360, 23);
  119. this.label1.TabIndex = 12;
  120. this.label1.Text = "Уйдет времени: 0 сек. Ссылок: 0";
  121. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  122. //
  123. // comboBox1
  124. //
  125. this.comboBox1.BackColor = System.Drawing.SystemColors.Window;
  126. this.comboBox1.Cursor = System.Windows.Forms.Cursors.Hand;
  127. this.comboBox1.DisplayMember = "1";
  128. this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  129. this.comboBox1.ForeColor = System.Drawing.Color.Black;
  130. this.comboBox1.FormattingEnabled = true;
  131. this.comboBox1.Items.AddRange(new object[] {
  132. "Upload.ee",
  133. "ZippyShare.com",
  134. "Другой id"});
  135. this.comboBox1.Location = new System.Drawing.Point(12, 269);
  136. this.comboBox1.Name = "comboBox1";
  137. this.comboBox1.Size = new System.Drawing.Size(137, 21);
  138. this.comboBox1.TabIndex = 14;
  139. this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
  140. //
  141. // btn_scheduler
  142. //
  143. this.btn_scheduler.Cursor = System.Windows.Forms.Cursors.Hand;
  144. this.btn_scheduler.ForeColor = System.Drawing.Color.Black;
  145. this.btn_scheduler.Location = new System.Drawing.Point(285, 296);
  146. this.btn_scheduler.Name = "btn_scheduler";
  147. this.btn_scheduler.Size = new System.Drawing.Size(87, 23);
  148. this.btn_scheduler.TabIndex = 15;
  149. this.btn_scheduler.Text = "Планировщик";
  150. this.btn_scheduler.UseVisualStyleBackColor = true;
  151. this.btn_scheduler.Click += new System.EventHandler(this.btn_scheduler_Click);
  152. //
  153. // textBox2
  154. //
  155. this.textBox2.BackColor = System.Drawing.SystemColors.Window;
  156. this.textBox2.ForeColor = System.Drawing.Color.Black;
  157. this.textBox2.Location = new System.Drawing.Point(12, 191);
  158. this.textBox2.Name = "textBox2";
  159. this.textBox2.Size = new System.Drawing.Size(335, 20);
  160. this.textBox2.TabIndex = 16;
  161. //
  162. // btn_edit
  163. //
  164. this.btn_edit.Cursor = System.Windows.Forms.Cursors.Hand;
  165. this.btn_edit.ForeColor = System.Drawing.Color.Black;
  166. this.btn_edit.Location = new System.Drawing.Point(93, 217);
  167. this.btn_edit.Name = "btn_edit";
  168. this.btn_edit.Size = new System.Drawing.Size(75, 23);
  169. this.btn_edit.TabIndex = 17;
  170. this.btn_edit.Text = "Изменить";
  171. this.btn_edit.UseVisualStyleBackColor = true;
  172. this.btn_edit.Click += new System.EventHandler(this.btn_edit_Click);
  173. //
  174. // btn_delete
  175. //
  176. this.btn_delete.Cursor = System.Windows.Forms.Cursors.Hand;
  177. this.btn_delete.ForeColor = System.Drawing.Color.Black;
  178. this.btn_delete.Location = new System.Drawing.Point(174, 217);
  179. this.btn_delete.Name = "btn_delete";
  180. this.btn_delete.Size = new System.Drawing.Size(75, 23);
  181. this.btn_delete.TabIndex = 18;
  182. this.btn_delete.Text = "Удалить";
  183. this.btn_delete.UseVisualStyleBackColor = true;
  184. this.btn_delete.Click += new System.EventHandler(this.btn_delete_Click);
  185. //
  186. // btn_add
  187. //
  188. this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
  189. this.btn_add.ForeColor = System.Drawing.Color.Black;
  190. this.btn_add.Location = new System.Drawing.Point(12, 217);
  191. this.btn_add.Name = "btn_add";
  192. this.btn_add.Size = new System.Drawing.Size(75, 23);
  193. this.btn_add.TabIndex = 19;
  194. this.btn_add.Text = "Добавить";
  195. this.btn_add.UseVisualStyleBackColor = true;
  196. this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
  197. //
  198. // btn_clear
  199. //
  200. this.btn_clear.Cursor = System.Windows.Forms.Cursors.Hand;
  201. this.btn_clear.ForeColor = System.Drawing.Color.Black;
  202. this.btn_clear.Location = new System.Drawing.Point(255, 217);
  203. this.btn_clear.Name = "btn_clear";
  204. this.btn_clear.Size = new System.Drawing.Size(117, 23);
  205. this.btn_clear.TabIndex = 20;
  206. this.btn_clear.Text = "Очистить список";
  207. this.btn_clear.UseVisualStyleBackColor = true;
  208. this.btn_clear.Click += new System.EventHandler(this.btn_clear_Click);
  209. //
  210. // btnClear
  211. //
  212. this.btnClear.Location = new System.Drawing.Point(353, 191);
  213. this.btnClear.Name = "btnClear";
  214. this.btnClear.Size = new System.Drawing.Size(19, 20);
  215. this.btnClear.TabIndex = 21;
  216. this.btnClear.Text = "X";
  217. this.btnClear.UseVisualStyleBackColor = true;
  218. this.btnClear.Click += new System.EventHandler(this.button1_Click);
  219. //
  220. // picWeb
  221. //
  222. this.picWeb.Cursor = System.Windows.Forms.Cursors.Hand;
  223. this.picWeb.Image = global::ClickerWeb.Properties.Resources.web_icon;
  224. this.picWeb.Location = new System.Drawing.Point(285, 264);
  225. this.picWeb.Name = "picWeb";
  226. this.picWeb.Size = new System.Drawing.Size(29, 26);
  227. this.picWeb.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  228. this.picWeb.TabIndex = 23;
  229. this.picWeb.TabStop = false;
  230. this.picWeb.Click += new System.EventHandler(this.picWeb_Click);
  231. //
  232. // picGit
  233. //
  234. this.picGit.Cursor = System.Windows.Forms.Cursors.Hand;
  235. this.picGit.Image = global::ClickerWeb.Properties.Resources.GitHub_Mark_32px;
  236. this.picGit.Location = new System.Drawing.Point(343, 264);
  237. this.picGit.Name = "picGit";
  238. this.picGit.Size = new System.Drawing.Size(29, 26);
  239. this.picGit.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  240. this.picGit.TabIndex = 22;
  241. this.picGit.TabStop = false;
  242. this.picGit.Click += new System.EventHandler(this.picGit_Click);
  243. //
  244. // picTG
  245. //
  246. this.picTG.Cursor = System.Windows.Forms.Cursors.Hand;
  247. this.picTG.Image = global::ClickerWeb.Properties.Resources.tg_ico;
  248. this.picTG.Location = new System.Drawing.Point(315, 264);
  249. this.picTG.Name = "picTG";
  250. this.picTG.Size = new System.Drawing.Size(29, 26);
  251. this.picTG.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  252. this.picTG.TabIndex = 10;
  253. this.picTG.TabStop = false;
  254. this.picTG.Click += new System.EventHandler(this.picTG_Click);
  255. //
  256. // Form1
  257. //
  258. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  259. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  260. this.BackColor = System.Drawing.SystemColors.Control;
  261. this.ClientSize = new System.Drawing.Size(384, 327);
  262. this.Controls.Add(this.picWeb);
  263. this.Controls.Add(this.picGit);
  264. this.Controls.Add(this.btnClear);
  265. this.Controls.Add(this.listBox1);
  266. this.Controls.Add(this.btn_clear);
  267. this.Controls.Add(this.btn_add);
  268. this.Controls.Add(this.btn_delete);
  269. this.Controls.Add(this.btn_edit);
  270. this.Controls.Add(this.textBox2);
  271. this.Controls.Add(this.btn_scheduler);
  272. this.Controls.Add(this.comboBox1);
  273. this.Controls.Add(this.label1);
  274. this.Controls.Add(this.picTG);
  275. this.Controls.Add(this.textBox1);
  276. this.Controls.Add(this.btn_choose_file);
  277. this.Controls.Add(this.btn_start);
  278. this.Controls.Add(this.webBrowser1);
  279. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  280. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  281. this.MaximizeBox = false;
  282. this.Name = "Form1";
  283. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  284. this.Text = "ClickerWeb";
  285. this.Load += new System.EventHandler(this.Form1_Load);
  286. ((System.ComponentModel.ISupportInitialize)(this.picWeb)).EndInit();
  287. ((System.ComponentModel.ISupportInitialize)(this.picGit)).EndInit();
  288. ((System.ComponentModel.ISupportInitialize)(this.picTG)).EndInit();
  289. this.ResumeLayout(false);
  290. this.PerformLayout();
  291. }
  292. #endregion
  293. private System.Windows.Forms.WebBrowser webBrowser1;
  294. private System.Windows.Forms.Button btn_start;
  295. private System.Windows.Forms.ListBox listBox1;
  296. private System.Windows.Forms.Button btn_choose_file;
  297. private System.Windows.Forms.OpenFileDialog openFileDialog1;
  298. private System.Windows.Forms.TextBox textBox1;
  299. private System.Windows.Forms.PictureBox picTG;
  300. private System.Windows.Forms.Label label1;
  301. private System.Windows.Forms.ComboBox comboBox1;
  302. private System.Windows.Forms.Button btn_scheduler;
  303. private System.Windows.Forms.TextBox textBox2;
  304. private System.Windows.Forms.Button btn_edit;
  305. private System.Windows.Forms.Button btn_delete;
  306. private System.Windows.Forms.Button btn_add;
  307. private System.Windows.Forms.Button btn_clear;
  308. private System.Windows.Forms.Button btnClear;
  309. private System.Windows.Forms.PictureBox picGit;
  310. private System.Windows.Forms.PictureBox picWeb;
  311. }
  312. }