Form6.Designer.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. 
  2. namespace Praktika409
  3. {
  4. partial class Form6
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</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 Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. this.trackBar1 = new System.Windows.Forms.TrackBar();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.timer1 = new System.Windows.Forms.Timer(this.components);
  33. this.button1 = new System.Windows.Forms.Button();
  34. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  35. ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // trackBar1
  39. //
  40. this.trackBar1.Location = new System.Drawing.Point(12, 12);
  41. this.trackBar1.Name = "trackBar1";
  42. this.trackBar1.Size = new System.Drawing.Size(104, 45);
  43. this.trackBar1.TabIndex = 0;
  44. this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll);
  45. //
  46. // label1
  47. //
  48. this.label1.AutoSize = true;
  49. this.label1.Location = new System.Drawing.Point(42, 60);
  50. this.label1.Name = "label1";
  51. this.label1.Size = new System.Drawing.Size(38, 15);
  52. this.label1.TabIndex = 1;
  53. this.label1.Text = "label1";
  54. //
  55. // button1
  56. //
  57. this.button1.Location = new System.Drawing.Point(12, 94);
  58. this.button1.Name = "button1";
  59. this.button1.Size = new System.Drawing.Size(75, 23);
  60. this.button1.TabIndex = 2;
  61. this.button1.Text = "button1";
  62. this.button1.UseVisualStyleBackColor = true;
  63. this.button1.Click += new System.EventHandler(this.button1_Click);
  64. //
  65. // progressBar1
  66. //
  67. this.progressBar1.Location = new System.Drawing.Point(16, 123);
  68. this.progressBar1.Name = "progressBar1";
  69. this.progressBar1.Size = new System.Drawing.Size(100, 23);
  70. this.progressBar1.TabIndex = 3;
  71. this.progressBar1.Click += new System.EventHandler(this.progressBar1_Click);
  72. //
  73. // Form6
  74. //
  75. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
  76. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  77. this.ClientSize = new System.Drawing.Size(800, 450);
  78. this.Controls.Add(this.progressBar1);
  79. this.Controls.Add(this.button1);
  80. this.Controls.Add(this.label1);
  81. this.Controls.Add(this.trackBar1);
  82. this.Name = "Form6";
  83. this.Text = "Form6";
  84. ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
  85. this.ResumeLayout(false);
  86. this.PerformLayout();
  87. }
  88. #endregion
  89. private System.Windows.Forms.TrackBar trackBar1;
  90. private System.Windows.Forms.Label label1;
  91. private System.Windows.Forms.Timer timer1;
  92. private System.Windows.Forms.Button button1;
  93. private System.Windows.Forms.ProgressBar progressBar1;
  94. }
  95. }