Form2.Designer.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. 
  2. namespace prakrika3
  3. {
  4. partial class Form2
  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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  30. this.button5 = new System.Windows.Forms.Button();
  31. this.button4 = new System.Windows.Forms.Button();
  32. this.button3 = new System.Windows.Forms.Button();
  33. this.button2 = new System.Windows.Forms.Button();
  34. this.button1 = new System.Windows.Forms.Button();
  35. this.tableLayoutPanel1.SuspendLayout();
  36. this.SuspendLayout();
  37. //
  38. // tableLayoutPanel1
  39. //
  40. this.tableLayoutPanel1.ColumnCount = 3;
  41. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  42. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  43. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 104F));
  44. this.tableLayoutPanel1.Controls.Add(this.button5, 0, 2);
  45. this.tableLayoutPanel1.Controls.Add(this.button4, 0, 2);
  46. this.tableLayoutPanel1.Controls.Add(this.button3, 0, 2);
  47. this.tableLayoutPanel1.Controls.Add(this.button2, 0, 0);
  48. this.tableLayoutPanel1.Location = new System.Drawing.Point(113, 72);
  49. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  50. this.tableLayoutPanel1.RowCount = 3;
  51. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
  52. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
  53. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 62F));
  54. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  55. this.tableLayoutPanel1.Size = new System.Drawing.Size(320, 195);
  56. this.tableLayoutPanel1.TabIndex = 0;
  57. this.tableLayoutPanel1.Paint += new System.Windows.Forms.PaintEventHandler(this.tableLayoutPanel1_Paint);
  58. //
  59. // button5
  60. //
  61. this.button5.Location = new System.Drawing.Point(3, 135);
  62. this.button5.Name = "button5";
  63. this.button5.Size = new System.Drawing.Size(102, 57);
  64. this.button5.TabIndex = 5;
  65. this.button5.Text = "button5";
  66. this.button5.UseVisualStyleBackColor = true;
  67. //
  68. // button4
  69. //
  70. this.button4.Location = new System.Drawing.Point(219, 135);
  71. this.button4.Name = "button4";
  72. this.button4.Size = new System.Drawing.Size(98, 57);
  73. this.button4.TabIndex = 4;
  74. this.button4.Text = "button4";
  75. this.button4.UseVisualStyleBackColor = true;
  76. //
  77. // button3
  78. //
  79. this.button3.Location = new System.Drawing.Point(111, 135);
  80. this.button3.Name = "button3";
  81. this.button3.Size = new System.Drawing.Size(102, 57);
  82. this.button3.TabIndex = 3;
  83. this.button3.Text = "button3";
  84. this.button3.UseVisualStyleBackColor = true;
  85. //
  86. // button2
  87. //
  88. this.button2.Location = new System.Drawing.Point(3, 3);
  89. this.button2.Name = "button2";
  90. this.button2.Size = new System.Drawing.Size(102, 60);
  91. this.button2.TabIndex = 2;
  92. this.button2.Text = "button2";
  93. this.button2.UseVisualStyleBackColor = true;
  94. //
  95. // button1
  96. //
  97. this.button1.Location = new System.Drawing.Point(618, 181);
  98. this.button1.Name = "button1";
  99. this.button1.Size = new System.Drawing.Size(75, 23);
  100. this.button1.TabIndex = 1;
  101. this.button1.Text = "button1";
  102. this.button1.UseVisualStyleBackColor = true;
  103. //
  104. // Form2
  105. //
  106. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
  107. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  108. this.ClientSize = new System.Drawing.Size(800, 450);
  109. this.Controls.Add(this.button1);
  110. this.Controls.Add(this.tableLayoutPanel1);
  111. this.Name = "Form2";
  112. this.Text = "Form2";
  113. this.tableLayoutPanel1.ResumeLayout(false);
  114. this.ResumeLayout(false);
  115. }
  116. #endregion
  117. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  118. private System.Windows.Forms.Button button1;
  119. private System.Windows.Forms.Button button5;
  120. private System.Windows.Forms.Button button4;
  121. private System.Windows.Forms.Button button3;
  122. private System.Windows.Forms.Button button2;
  123. }
  124. }