Form1.Designer.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. namespace WindowsFormsAppGebel
  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.button1 = new System.Windows.Forms.Button();
  30. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  31. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // button1
  35. //
  36. this.button1.Location = new System.Drawing.Point(81, 61);
  37. this.button1.Name = "button1";
  38. this.button1.Size = new System.Drawing.Size(129, 23);
  39. this.button1.TabIndex = 0;
  40. this.button1.Text = "Открыть форму";
  41. this.button1.UseVisualStyleBackColor = true;
  42. this.button1.Click += new System.EventHandler(this.button1_Click);
  43. //
  44. // pictureBox1
  45. //
  46. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  47. this.pictureBox1.Location = new System.Drawing.Point(688, 12);
  48. this.pictureBox1.Name = "pictureBox1";
  49. this.pictureBox1.Size = new System.Drawing.Size(100, 50);
  50. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  51. this.pictureBox1.TabIndex = 1;
  52. this.pictureBox1.TabStop = false;
  53. //
  54. // Form1
  55. //
  56. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  57. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  58. this.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
  59. this.ClientSize = new System.Drawing.Size(800, 450);
  60. this.Controls.Add(this.pictureBox1);
  61. this.Controls.Add(this.button1);
  62. this.Name = "Form1";
  63. this.Text = "Form1";
  64. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  65. this.ResumeLayout(false);
  66. }
  67. #endregion
  68. private System.Windows.Forms.Button button1;
  69. private System.Windows.Forms.PictureBox pictureBox1;
  70. }
  71. }