Form1.Designer.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. 
  2. namespace WindowsFormsApp12
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// Обязательная переменная конструктора.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Освободить все используемые ресурсы.
  12. /// </summary>
  13. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Код, автоматически созданный конструктором форм Windows
  23. /// <summary>
  24. /// Требуемый метод для поддержки конструктора — не изменяйте
  25. /// содержимое этого метода с помощью редактора кода.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  31. this.timer1 = new System.Windows.Forms.Timer(this.components);
  32. this.SuspendLayout();
  33. //
  34. // progressBar1
  35. //
  36. this.progressBar1.Location = new System.Drawing.Point(46, 81);
  37. this.progressBar1.Name = "progressBar1";
  38. this.progressBar1.Size = new System.Drawing.Size(280, 23);
  39. this.progressBar1.TabIndex = 0;
  40. //
  41. // timer1
  42. //
  43. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  44. //
  45. // Form1
  46. //
  47. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  48. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  49. this.ClientSize = new System.Drawing.Size(393, 203);
  50. this.Controls.Add(this.progressBar1);
  51. this.Name = "Form1";
  52. this.Text = "Form1";
  53. this.Load += new System.EventHandler(this.Form1_Load);
  54. this.ResumeLayout(false);
  55. }
  56. #endregion
  57. private System.Windows.Forms.ProgressBar progressBar1;
  58. private System.Windows.Forms.Timer timer1;
  59. }
  60. }