Form1.Designer.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. namespace Proect8_project
  2. {
  3. partial class Form1
  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. pictureBox1 = new PictureBox();
  29. ((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
  30. SuspendLayout();
  31. //
  32. // pictureBox1
  33. //
  34. pictureBox1.Location = new Point(0, 1);
  35. pictureBox1.Name = "pictureBox1";
  36. pictureBox1.Size = new Size(799, 446);
  37. pictureBox1.TabIndex = 0;
  38. pictureBox1.TabStop = false;
  39. //
  40. // Form1
  41. //
  42. AutoScaleDimensions = new SizeF(8F, 20F);
  43. AutoScaleMode = AutoScaleMode.Font;
  44. ClientSize = new Size(800, 450);
  45. Controls.Add(pictureBox1);
  46. Name = "Form1";
  47. Text = "Практическая №8";
  48. Paint += Form1_Paint;
  49. ((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
  50. ResumeLayout(false);
  51. }
  52. #endregion
  53. private PictureBox pictureBox1;
  54. }
  55. }