Form1.Designer.cs 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. 
  2. namespace WindowsFormsApp1
  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.button1 = new System.Windows.Forms.Button();
  30. this.trackBar1 = new System.Windows.Forms.TrackBar();
  31. ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // button1
  35. //
  36. this.button1.Location = new System.Drawing.Point(267, 131);
  37. this.button1.Name = "button1";
  38. this.button1.Size = new System.Drawing.Size(75, 23);
  39. this.button1.TabIndex = 0;
  40. this.button1.Text = "button1";
  41. this.button1.UseVisualStyleBackColor = true;
  42. //
  43. // trackBar1
  44. //
  45. this.trackBar1.Location = new System.Drawing.Point(221, 233);
  46. this.trackBar1.Name = "trackBar1";
  47. this.trackBar1.Size = new System.Drawing.Size(104, 45);
  48. this.trackBar1.TabIndex = 1;
  49. //
  50. // Form1
  51. //
  52. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  53. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  54. this.ClientSize = new System.Drawing.Size(800, 450);
  55. this.Controls.Add(this.trackBar1);
  56. this.Controls.Add(this.button1);
  57. this.Name = "Form1";
  58. this.Text = "Form1";
  59. ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
  60. this.ResumeLayout(false);
  61. this.PerformLayout();
  62. }
  63. #endregion
  64. private System.Windows.Forms.Button button1;
  65. private System.Windows.Forms.TrackBar trackBar1;
  66. }
  67. }