Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.82 KB | None | 0 0
  1. namespace WindowsFormsApp7
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9.  
  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.  
  23. #region Windows Form Designer generated code
  24.  
  25. /// <summary>
  26. /// Required method for Designer support - do not modify
  27. /// the contents of this method with the code editor.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.button2 = new System.Windows.Forms.Button();
  33. this.button3 = new System.Windows.Forms.Button();
  34. this.button4 = new System.Windows.Forms.Button();
  35. this.SuspendLayout();
  36. //
  37. // button1
  38. //
  39. this.button1.Location = new System.Drawing.Point(21, 27);
  40. this.button1.Name = "button1";
  41. this.button1.Size = new System.Drawing.Size(75, 23);
  42. this.button1.TabIndex = 0;
  43. this.button1.Text = "button1";
  44. this.button1.UseVisualStyleBackColor = true;
  45. this.button1.Click += new System.EventHandler(this.button1_Click);
  46. //
  47. // button2
  48. //
  49. this.button2.Location = new System.Drawing.Point(21, 79);
  50. this.button2.Name = "button2";
  51. this.button2.Size = new System.Drawing.Size(75, 23);
  52. this.button2.TabIndex = 1;
  53. this.button2.Text = "button2";
  54. this.button2.UseVisualStyleBackColor = true;
  55. this.button2.Click += new System.EventHandler(this.button2_Click);
  56. //
  57. // button3
  58. //
  59. this.button3.Location = new System.Drawing.Point(21, 138);
  60. this.button3.Name = "button3";
  61. this.button3.Size = new System.Drawing.Size(75, 23);
  62. this.button3.TabIndex = 2;
  63. this.button3.Text = "button3";
  64. this.button3.UseVisualStyleBackColor = true;
  65. this.button3.Click += new System.EventHandler(this.button3_Click);
  66. //
  67. // button4
  68. //
  69. this.button4.Location = new System.Drawing.Point(21, 191);
  70. this.button4.Name = "button4";
  71. this.button4.Size = new System.Drawing.Size(75, 23);
  72. this.button4.TabIndex = 3;
  73. this.button4.Text = "button4";
  74. this.button4.UseVisualStyleBackColor = true;
  75. this.button4.Click += new System.EventHandler(this.button4_Click);
  76. //
  77. // Form1
  78. //
  79. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  80. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  81. this.ClientSize = new System.Drawing.Size(175, 226);
  82. this.Controls.Add(this.button4);
  83. this.Controls.Add(this.button3);
  84. this.Controls.Add(this.button2);
  85. this.Controls.Add(this.button1);
  86. this.Name = "Form1";
  87. this.Text = "Form1";
  88. this.ResumeLayout(false);
  89.  
  90. }
  91.  
  92. #endregion
  93.  
  94. private System.Windows.Forms.Button button1;
  95. private System.Windows.Forms.Button button2;
  96. private System.Windows.Forms.Button button3;
  97. private System.Windows.Forms.Button button4;
  98. }
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement