Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.15 KB | None | 0 0
  1. namespace stok_takip
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.txt_ad = new System.Windows.Forms.TextBox();
  35. this.txt_fiyat = new System.Windows.Forms.TextBox();
  36. this.button1 = new System.Windows.Forms.Button();
  37. this.button2 = new System.Windows.Forms.Button();
  38. this.button3 = new System.Windows.Forms.Button();
  39. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  40. this.label3 = new System.Windows.Forms.Label();
  41. this.label4 = new System.Windows.Forms.Label();
  42. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  43. this.SuspendLayout();
  44. //
  45. // label1
  46. //
  47. this.label1.AutoSize = true;
  48. this.label1.ForeColor = System.Drawing.Color.RoyalBlue;
  49. this.label1.Location = new System.Drawing.Point(69, 91);
  50. this.label1.Name = "label1";
  51. this.label1.Size = new System.Drawing.Size(48, 13);
  52. this.label1.TabIndex = 0;
  53. this.label1.Text = "Ürün Adı";
  54. //
  55. // label2
  56. //
  57. this.label2.AutoSize = true;
  58. this.label2.ForeColor = System.Drawing.Color.RoyalBlue;
  59. this.label2.Location = new System.Drawing.Point(72, 140);
  60. this.label2.Name = "label2";
  61. this.label2.Size = new System.Drawing.Size(29, 13);
  62. this.label2.TabIndex = 1;
  63. this.label2.Text = "Fiyat";
  64. //
  65. // txt_ad
  66. //
  67. this.txt_ad.Cursor = System.Windows.Forms.Cursors.IBeam;
  68. this.txt_ad.Location = new System.Drawing.Point(143, 91);
  69. this.txt_ad.Name = "txt_ad";
  70. this.txt_ad.ScrollBars = System.Windows.Forms.ScrollBars.Horizontal;
  71. this.txt_ad.Size = new System.Drawing.Size(259, 20);
  72. this.txt_ad.TabIndex = 2;
  73. this.txt_ad.Text = "Ürün adını girin";
  74. this.txt_ad.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  75. this.txt_ad.TextChanged += new System.EventHandler(this.txt_ad_TextChanged);
  76. //
  77. // txt_fiyat
  78. //
  79. this.txt_fiyat.BackColor = System.Drawing.SystemColors.Window;
  80. this.txt_fiyat.Location = new System.Drawing.Point(143, 132);
  81. this.txt_fiyat.Name = "txt_fiyat";
  82. this.txt_fiyat.RightToLeft = System.Windows.Forms.RightToLeft.No;
  83. this.txt_fiyat.ScrollBars = System.Windows.Forms.ScrollBars.Horizontal;
  84. this.txt_fiyat.Size = new System.Drawing.Size(259, 20);
  85. this.txt_fiyat.TabIndex = 3;
  86. this.txt_fiyat.Text = "Fiyat girin";
  87. this.txt_fiyat.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  88. this.txt_fiyat.TextChanged += new System.EventHandler(this.txt_fiyat_TextChanged);
  89. //
  90. // button1
  91. //
  92. this.button1.Location = new System.Drawing.Point(523, 80);
  93. this.button1.Name = "button1";
  94. this.button1.Size = new System.Drawing.Size(105, 23);
  95. this.button1.TabIndex = 4;
  96. this.button1.Text = "Ekle";
  97. this.button1.UseVisualStyleBackColor = true;
  98. this.button1.Click += new System.EventHandler(this.button1_Click);
  99. //
  100. // button2
  101. //
  102. this.button2.Location = new System.Drawing.Point(523, 120);
  103. this.button2.Name = "button2";
  104. this.button2.Size = new System.Drawing.Size(105, 23);
  105. this.button2.TabIndex = 5;
  106. this.button2.Text = "Güncelle";
  107. this.button2.UseVisualStyleBackColor = true;
  108. this.button2.Click += new System.EventHandler(this.button2_Click);
  109. //
  110. // button3
  111. //
  112. this.button3.Location = new System.Drawing.Point(523, 160);
  113. this.button3.Name = "button3";
  114. this.button3.Size = new System.Drawing.Size(105, 23);
  115. this.button3.TabIndex = 6;
  116. this.button3.Text = "Sil";
  117. this.button3.UseVisualStyleBackColor = true;
  118. this.button3.Click += new System.EventHandler(this.button3_Click);
  119. //
  120. // dataGridView1
  121. //
  122. this.dataGridView1.AllowUserToOrderColumns = true;
  123. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  124. this.dataGridView1.Location = new System.Drawing.Point(72, 253);
  125. this.dataGridView1.Name = "dataGridView1";
  126. this.dataGridView1.Size = new System.Drawing.Size(556, 172);
  127. this.dataGridView1.TabIndex = 7;
  128. //
  129. // label3
  130. //
  131. this.label3.AutoSize = true;
  132. this.label3.Location = new System.Drawing.Point(72, 180);
  133. this.label3.Name = "label3";
  134. this.label3.Size = new System.Drawing.Size(22, 13);
  135. this.label3.TabIndex = 8;
  136. this.label3.Text = ".....";
  137. //
  138. // label4
  139. //
  140. this.label4.AutoSize = true;
  141. this.label4.Location = new System.Drawing.Point(72, 209);
  142. this.label4.Name = "label4";
  143. this.label4.Size = new System.Drawing.Size(22, 13);
  144. this.label4.TabIndex = 9;
  145. this.label4.Text = ".....";
  146. //
  147. // Form1
  148. //
  149. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  150. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  151. this.BackColor = System.Drawing.SystemColors.ActiveCaption;
  152. this.ClientSize = new System.Drawing.Size(699, 450);
  153. this.Controls.Add(this.label4);
  154. this.Controls.Add(this.label3);
  155. this.Controls.Add(this.dataGridView1);
  156. this.Controls.Add(this.button3);
  157. this.Controls.Add(this.button2);
  158. this.Controls.Add(this.button1);
  159. this.Controls.Add(this.txt_fiyat);
  160. this.Controls.Add(this.txt_ad);
  161. this.Controls.Add(this.label2);
  162. this.Controls.Add(this.label1);
  163. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  164. this.Name = "Form1";
  165. this.Text = "Form1";
  166. this.Load += new System.EventHandler(this.Form1_Load);
  167. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  168. this.ResumeLayout(false);
  169. this.PerformLayout();
  170.  
  171. }
  172.  
  173. #endregion
  174.  
  175. private System.Windows.Forms.Label label1;
  176. private System.Windows.Forms.Label label2;
  177. private System.Windows.Forms.TextBox txt_ad;
  178. private System.Windows.Forms.TextBox txt_fiyat;
  179. private System.Windows.Forms.Button button1;
  180. private System.Windows.Forms.Button button2;
  181. private System.Windows.Forms.Button button3;
  182. private System.Windows.Forms.DataGridView dataGridView1;
  183. private System.Windows.Forms.Label label3;
  184. private System.Windows.Forms.Label label4;
  185. }
  186. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement