/Katmai_November_CTP/ShoppingCart/ShoppingCartClient/CS/ShoppingCartClient/ShoppingCartClient.Designer.cs
C# | 543 lines | 412 code | 13 blank | 118 comment | 3 complexity | 7a98ce8662c9f59bfafbfe555740287e MD5 | raw file
1namespace Microsoft.Samples.SqlServer 2{ 3 partial class frmMain 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 protected override void Dispose(bool disposing) 14 { 15 if (disposing && (components != null)) 16 { 17 components.Dispose(); 18 } 19 base.Dispose(disposing); 20 } 21 22 #region Windows Form Designer generated code 23 24 /// <summary> 25 /// Required method for Designer support - do not modify 26 /// the contents of this method with the code editor. 27 /// </summary> 28 [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Globalization", "CA1303:DoNotPassLiteralsAsLocalizedParameters", MessageId = "System.Windows.Forms.Control.set_Text(System.String)")] 29 private void InitializeComponent() 30 { 31 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain)); 32 this.dataGridView1 = new System.Windows.Forms.DataGridView(); 33 this.tabControl = new System.Windows.Forms.TabControl(); 34 this.tabApplication = new System.Windows.Forms.TabPage(); 35 this.paneShop = new System.Windows.Forms.Panel(); 36 this.label8 = new System.Windows.Forms.Label(); 37 this.label7 = new System.Windows.Forms.Label(); 38 this.label6 = new System.Windows.Forms.Label(); 39 this.label5 = new System.Windows.Forms.Label(); 40 this.nudQuantity = new System.Windows.Forms.NumericUpDown(); 41 this.btnConfirm = new System.Windows.Forms.Button(); 42 this.btnRemove = new System.Windows.Forms.Button(); 43 this.lstItems = new System.Windows.Forms.ListBox(); 44 this.btnAdd = new System.Windows.Forms.Button(); 45 this.txtUnitPrice = new System.Windows.Forms.TextBox(); 46 this.cboItem = new System.Windows.Forms.ComboBox(); 47 this.paneFinish = new System.Windows.Forms.Panel(); 48 this.label3 = new System.Windows.Forms.Label(); 49 this.label2 = new System.Windows.Forms.Label(); 50 this.label1 = new System.Windows.Forms.Label(); 51 this.txtTotalAmount = new System.Windows.Forms.TextBox(); 52 this.txtNumberItems = new System.Windows.Forms.TextBox(); 53 this.paneData = new System.Windows.Forms.Panel(); 54 this.paneCreateOrder = new System.Windows.Forms.Panel(); 55 this.pictureBox1 = new System.Windows.Forms.PictureBox(); 56 this.textBox1 = new System.Windows.Forms.TextBox(); 57 this.label4 = new System.Windows.Forms.Label(); 58 this.btnCreateOrder = new System.Windows.Forms.Button(); 59 this.txtLabelFinish = new System.Windows.Forms.TextBox(); 60 this.txtLabelShop = new System.Windows.Forms.TextBox(); 61 this.txtLabelCreateOrder = new System.Windows.Forms.TextBox(); 62 this.tabTrace = new System.Windows.Forms.TabPage(); 63 this.txtLog = new System.Windows.Forms.TextBox(); 64 this.label10 = new System.Windows.Forms.Label(); 65 this.label9 = new System.Windows.Forms.Label(); 66 this.txtConversationHandle = new System.Windows.Forms.TextBox(); 67 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); 68 this.tabControl.SuspendLayout(); 69 this.tabApplication.SuspendLayout(); 70 this.paneShop.SuspendLayout(); 71 ((System.ComponentModel.ISupportInitialize)(this.nudQuantity)).BeginInit(); 72 this.paneFinish.SuspendLayout(); 73 this.paneData.SuspendLayout(); 74 this.paneCreateOrder.SuspendLayout(); 75 ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); 76 this.tabTrace.SuspendLayout(); 77 this.SuspendLayout(); 78 // 79 // dataGridView1 80 // 81 this.dataGridView1.AllowUserToAddRows = false; 82 this.dataGridView1.AllowUserToDeleteRows = false; 83 this.dataGridView1.AllowUserToOrderColumns = true; 84 this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill; 85 this.dataGridView1.Location = new System.Drawing.Point(0, 0); 86 this.dataGridView1.Name = "dataGridView1"; 87 this.dataGridView1.ReadOnly = true; 88 this.dataGridView1.Size = new System.Drawing.Size(377, 354); 89 this.dataGridView1.TabIndex = 0; 90 // 91 // tabControl 92 // 93 this.tabControl.Controls.Add(this.tabApplication); 94 this.tabControl.Controls.Add(this.tabTrace); 95 this.tabControl.Location = new System.Drawing.Point(1, 3); 96 this.tabControl.Name = "tabControl"; 97 this.tabControl.SelectedIndex = 0; 98 this.tabControl.Size = new System.Drawing.Size(505, 524); 99 this.tabControl.TabIndex = 0; 100 // 101 // tabApplication 102 // 103 this.tabApplication.Controls.Add(this.paneShop); 104 this.tabApplication.Controls.Add(this.paneFinish); 105 this.tabApplication.Controls.Add(this.paneCreateOrder); 106 this.tabApplication.Controls.Add(this.txtLabelFinish); 107 this.tabApplication.Controls.Add(this.txtLabelShop); 108 this.tabApplication.Controls.Add(this.txtLabelCreateOrder); 109 this.tabApplication.Location = new System.Drawing.Point(4, 22); 110 this.tabApplication.Name = "tabApplication"; 111 this.tabApplication.Padding = new System.Windows.Forms.Padding(3); 112 this.tabApplication.Size = new System.Drawing.Size(497, 498); 113 this.tabApplication.TabIndex = 0; 114 this.tabApplication.Text = "Application"; 115 // 116 // paneShop 117 // 118 this.paneShop.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 119 this.paneShop.Controls.Add(this.label8); 120 this.paneShop.Controls.Add(this.label7); 121 this.paneShop.Controls.Add(this.label6); 122 this.paneShop.Controls.Add(this.label5); 123 this.paneShop.Controls.Add(this.nudQuantity); 124 this.paneShop.Controls.Add(this.btnConfirm); 125 this.paneShop.Controls.Add(this.btnRemove); 126 this.paneShop.Controls.Add(this.lstItems); 127 this.paneShop.Controls.Add(this.btnAdd); 128 this.paneShop.Controls.Add(this.txtUnitPrice); 129 this.paneShop.Controls.Add(this.cboItem); 130 this.paneShop.Location = new System.Drawing.Point(93, 20); 131 this.paneShop.Name = "paneShop"; 132 this.paneShop.Size = new System.Drawing.Size(397, 458); 133 this.paneShop.TabIndex = 10; 134 // 135 // label8 136 // 137 this.label8.AutoSize = true; 138 this.label8.Location = new System.Drawing.Point(54, 125); 139 this.label8.Name = "label8"; 140 this.label8.Size = new System.Drawing.Size(128, 13); 141 this.label8.TabIndex = 17; 142 this.label8.Text = "Items in the shopping cart"; 143 // 144 // label7 145 // 146 this.label7.AutoSize = true; 147 this.label7.Location = new System.Drawing.Point(271, 29); 148 this.label7.Name = "label7"; 149 this.label7.Size = new System.Drawing.Size(46, 13); 150 this.label7.TabIndex = 16; 151 this.label7.Text = "Quantity"; 152 // 153 // label6 154 // 155 this.label6.AutoSize = true; 156 this.label6.Location = new System.Drawing.Point(205, 30); 157 this.label6.Name = "label6"; 158 this.label6.Size = new System.Drawing.Size(52, 13); 159 this.label6.TabIndex = 15; 160 this.label6.Text = "Unit price"; 161 // 162 // label5 163 // 164 this.label5.AutoSize = true; 165 this.label5.Location = new System.Drawing.Point(54, 31); 166 this.label5.Name = "label5"; 167 this.label5.Size = new System.Drawing.Size(27, 13); 168 this.label5.TabIndex = 14; 169 this.label5.Text = "Item"; 170 // 171 // nudQuantity 172 // 173 this.nudQuantity.Location = new System.Drawing.Point(271, 51); 174 this.nudQuantity.Maximum = new decimal(new int[] { 175 20, 176 0, 177 0, 178 0}); 179 this.nudQuantity.Minimum = new decimal(new int[] { 180 1, 181 0, 182 0, 183 0}); 184 this.nudQuantity.Name = "nudQuantity"; 185 this.nudQuantity.ReadOnly = true; 186 this.nudQuantity.Size = new System.Drawing.Size(60, 20); 187 this.nudQuantity.TabIndex = 13; 188 this.nudQuantity.Value = new decimal(new int[] { 189 1, 190 0, 191 0, 192 0}); 193 // 194 // btnConfirm 195 // 196 this.btnConfirm.Enabled = false; 197 this.btnConfirm.Location = new System.Drawing.Point(156, 398); 198 this.btnConfirm.Name = "btnConfirm"; 199 this.btnConfirm.Size = new System.Drawing.Size(90, 23); 200 this.btnConfirm.TabIndex = 6; 201 this.btnConfirm.Text = "Confirm"; 202 this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click); 203 // 204 // btnRemove 205 // 206 this.btnRemove.Enabled = false; 207 this.btnRemove.Location = new System.Drawing.Point(224, 326); 208 this.btnRemove.Name = "btnRemove"; 209 this.btnRemove.Size = new System.Drawing.Size(107, 23); 210 this.btnRemove.TabIndex = 5; 211 this.btnRemove.Text = "Remove Item"; 212 this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click); 213 // 214 // lstItems 215 // 216 this.lstItems.FormattingEnabled = true; 217 this.lstItems.Location = new System.Drawing.Point(54, 146); 218 this.lstItems.Name = "lstItems"; 219 this.lstItems.Size = new System.Drawing.Size(279, 173); 220 this.lstItems.TabIndex = 4; 221 // 222 // btnAdd 223 // 224 this.btnAdd.Enabled = false; 225 this.btnAdd.Location = new System.Drawing.Point(256, 77); 226 this.btnAdd.Name = "btnAdd"; 227 this.btnAdd.Size = new System.Drawing.Size(75, 23); 228 this.btnAdd.TabIndex = 3; 229 this.btnAdd.Text = "Add Item"; 230 this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); 231 // 232 // txtUnitPrice 233 // 234 this.txtUnitPrice.Enabled = false; 235 this.txtUnitPrice.Location = new System.Drawing.Point(205, 51); 236 this.txtUnitPrice.Margin = new System.Windows.Forms.Padding(3, 1, 3, 3); 237 this.txtUnitPrice.Name = "txtUnitPrice"; 238 this.txtUnitPrice.ReadOnly = true; 239 this.txtUnitPrice.Size = new System.Drawing.Size(59, 20); 240 this.txtUnitPrice.TabIndex = 1; 241 // 242 // cboItem 243 // 244 this.cboItem.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 245 this.cboItem.FormattingEnabled = true; 246 this.cboItem.Location = new System.Drawing.Point(53, 50); 247 this.cboItem.Margin = new System.Windows.Forms.Padding(3, 1, 3, 3); 248 this.cboItem.Name = "cboItem"; 249 this.cboItem.Size = new System.Drawing.Size(148, 21); 250 this.cboItem.TabIndex = 0; 251 this.cboItem.SelectedIndexChanged += new System.EventHandler(this.cboItem_SelectedIndexChanged); 252 // 253 // paneFinish 254 // 255 this.paneFinish.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 256 this.paneFinish.Controls.Add(this.label3); 257 this.paneFinish.Controls.Add(this.label2); 258 this.paneFinish.Controls.Add(this.label1); 259 this.paneFinish.Controls.Add(this.txtTotalAmount); 260 this.paneFinish.Controls.Add(this.txtNumberItems); 261 this.paneFinish.Controls.Add(this.paneData); 262 this.paneFinish.Location = new System.Drawing.Point(93, 20); 263 this.paneFinish.Name = "paneFinish"; 264 this.paneFinish.Size = new System.Drawing.Size(397, 458); 265 this.paneFinish.TabIndex = 11; 266 // 267 // label3 268 // 269 this.label3.AutoSize = true; 270 this.label3.Location = new System.Drawing.Point(9, 13); 271 this.label3.Name = "label3"; 272 this.label3.Size = new System.Drawing.Size(42, 13); 273 this.label3.TabIndex = 6; 274 this.label3.Text = "Invoice"; 275 // 276 // label2 277 // 278 this.label2.AutoSize = true; 279 this.label2.Location = new System.Drawing.Point(209, 425); 280 this.label2.Name = "label2"; 281 this.label2.Size = new System.Drawing.Size(72, 13); 282 this.label2.TabIndex = 5; 283 this.label2.Text = "Total amount:"; 284 this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight; 285 // 286 // label1 287 // 288 this.label1.AutoSize = true; 289 this.label1.Location = new System.Drawing.Point(192, 398); 290 this.label1.Name = "label1"; 291 this.label1.Size = new System.Drawing.Size(87, 13); 292 this.label1.TabIndex = 4; 293 this.label1.Text = "Number of Items:"; 294 this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight; 295 // 296 // txtTotalAmount 297 // 298 this.txtTotalAmount.Location = new System.Drawing.Point(288, 422); 299 this.txtTotalAmount.Margin = new System.Windows.Forms.Padding(1, 3, 3, 3); 300 this.txtTotalAmount.Name = "txtTotalAmount"; 301 this.txtTotalAmount.ReadOnly = true; 302 this.txtTotalAmount.Size = new System.Drawing.Size(97, 20); 303 this.txtTotalAmount.TabIndex = 3; 304 // 305 // txtNumberItems 306 // 307 this.txtNumberItems.Location = new System.Drawing.Point(288, 395); 308 this.txtNumberItems.Margin = new System.Windows.Forms.Padding(2, 3, 3, 3); 309 this.txtNumberItems.Name = "txtNumberItems"; 310 this.txtNumberItems.ReadOnly = true; 311 this.txtNumberItems.Size = new System.Drawing.Size(98, 20); 312 this.txtNumberItems.TabIndex = 2; 313 // 314 // paneData 315 // 316 this.paneData.Controls.Add(this.dataGridView1); 317 this.paneData.Location = new System.Drawing.Point(9, 34); 318 this.paneData.Name = "paneData"; 319 this.paneData.Size = new System.Drawing.Size(377, 354); 320 this.paneData.TabIndex = 0; 321 // 322 // paneCreateOrder 323 // 324 this.paneCreateOrder.BackColor = System.Drawing.SystemColors.Window; 325 this.paneCreateOrder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 326 this.paneCreateOrder.Controls.Add(this.pictureBox1); 327 this.paneCreateOrder.Controls.Add(this.textBox1); 328 this.paneCreateOrder.Controls.Add(this.label4); 329 this.paneCreateOrder.Controls.Add(this.btnCreateOrder); 330 this.paneCreateOrder.Location = new System.Drawing.Point(93, 20); 331 this.paneCreateOrder.Name = "paneCreateOrder"; 332 this.paneCreateOrder.Size = new System.Drawing.Size(397, 458); 333 this.paneCreateOrder.TabIndex = 6; 334 // 335 // pictureBox1 336 // 337 this.pictureBox1.Image = global::Properties.Resources.imgShoppingCart; 338 this.pictureBox1.ImageLocation = ""; 339 this.pictureBox1.InitialImage = global::Properties.Resources.imgShoppingCart; 340 this.pictureBox1.Location = new System.Drawing.Point(102, 45); 341 this.pictureBox1.Name = "pictureBox1"; 342 this.pictureBox1.Size = new System.Drawing.Size(202, 225); 343 this.pictureBox1.TabIndex = 1; 344 this.pictureBox1.TabStop = false; 345 // 346 // textBox1 347 // 348 this.textBox1.BackColor = System.Drawing.SystemColors.Window; 349 this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; 350 this.textBox1.Location = new System.Drawing.Point(33, 293); 351 this.textBox1.Multiline = true; 352 this.textBox1.Name = "textBox1"; 353 this.textBox1.ReadOnly = true; 354 this.textBox1.Size = new System.Drawing.Size(333, 115); 355 this.textBox1.TabIndex = 3; 356 this.textBox1.Text = resources.GetString("textBox1.Text"); 357 // 358 // label4 359 // 360 this.label4.AutoSize = true; 361 this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 362 this.label4.Location = new System.Drawing.Point(115, 13); 363 this.label4.Name = "label4"; 364 this.label4.Size = new System.Drawing.Size(182, 24); 365 this.label4.TabIndex = 2; 366 this.label4.Text = "Shopping Cart Client"; 367 // 368 // btnCreateOrder 369 // 370 this.btnCreateOrder.BackColor = System.Drawing.SystemColors.ButtonFace; 371 this.btnCreateOrder.Location = new System.Drawing.Point(156, 414); 372 this.btnCreateOrder.Name = "btnCreateOrder"; 373 this.btnCreateOrder.Size = new System.Drawing.Size(90, 23); 374 this.btnCreateOrder.TabIndex = 0; 375 this.btnCreateOrder.Text = "Create Order"; 376 this.btnCreateOrder.UseVisualStyleBackColor = false; 377 this.btnCreateOrder.Click += new System.EventHandler(this.btnCreateOrder_Click); 378 // 379 // txtLabelFinish 380 // 381 this.txtLabelFinish.BackColor = System.Drawing.Color.LightSteelBlue; 382 this.txtLabelFinish.BorderStyle = System.Windows.Forms.BorderStyle.None; 383 this.txtLabelFinish.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 384 this.txtLabelFinish.ForeColor = System.Drawing.Color.White; 385 this.txtLabelFinish.Location = new System.Drawing.Point(7, 120); 386 this.txtLabelFinish.Multiline = true; 387 this.txtLabelFinish.Name = "txtLabelFinish"; 388 this.txtLabelFinish.ReadOnly = true; 389 this.txtLabelFinish.Size = new System.Drawing.Size(87, 32); 390 this.txtLabelFinish.TabIndex = 9; 391 this.txtLabelFinish.Text = "Finish"; 392 // 393 // txtLabelShop 394 // 395 this.txtLabelShop.BackColor = System.Drawing.Color.LightSteelBlue; 396 this.txtLabelShop.BorderStyle = System.Windows.Forms.BorderStyle.None; 397 this.txtLabelShop.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 398 this.txtLabelShop.ForeColor = System.Drawing.Color.White; 399 this.txtLabelShop.Location = new System.Drawing.Point(7, 79); 400 this.txtLabelShop.Multiline = true; 401 this.txtLabelShop.Name = "txtLabelShop"; 402 this.txtLabelShop.ReadOnly = true; 403 this.txtLabelShop.Size = new System.Drawing.Size(87, 32); 404 this.txtLabelShop.TabIndex = 8; 405 this.txtLabelShop.Text = "Shop"; 406 // 407 // txtLabelCreateOrder 408 // 409 this.txtLabelCreateOrder.BackColor = System.Drawing.Color.RoyalBlue; 410 this.txtLabelCreateOrder.BorderStyle = System.Windows.Forms.BorderStyle.None; 411 this.txtLabelCreateOrder.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 412 this.txtLabelCreateOrder.ForeColor = System.Drawing.Color.White; 413 this.txtLabelCreateOrder.Location = new System.Drawing.Point(7, 20); 414 this.txtLabelCreateOrder.Multiline = true; 415 this.txtLabelCreateOrder.Name = "txtLabelCreateOrder"; 416 this.txtLabelCreateOrder.ReadOnly = true; 417 this.txtLabelCreateOrder.Size = new System.Drawing.Size(87, 52); 418 this.txtLabelCreateOrder.TabIndex = 7; 419 this.txtLabelCreateOrder.Text = "Create Order"; 420 // 421 // tabTrace 422 // 423 this.tabTrace.Controls.Add(this.txtLog); 424 this.tabTrace.Controls.Add(this.label10); 425 this.tabTrace.Controls.Add(this.label9); 426 this.tabTrace.Controls.Add(this.txtConversationHandle); 427 this.tabTrace.Location = new System.Drawing.Point(4, 22); 428 this.tabTrace.Name = "tabTrace"; 429 this.tabTrace.Padding = new System.Windows.Forms.Padding(3); 430 this.tabTrace.Size = new System.Drawing.Size(497, 498); 431 this.tabTrace.TabIndex = 1; 432 this.tabTrace.Text = "Service Broker Trace"; 433 // 434 // txtLog 435 // 436 this.txtLog.Location = new System.Drawing.Point(8, 66); 437 this.txtLog.Multiline = true; 438 this.txtLog.Name = "txtLog"; 439 this.txtLog.ReadOnly = true; 440 this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 441 this.txtLog.Size = new System.Drawing.Size(483, 426); 442 this.txtLog.TabIndex = 17; 443 // 444 // label10 445 // 446 this.label10.AutoSize = true; 447 this.label10.Location = new System.Drawing.Point(8, 45); 448 this.label10.Name = "label10"; 449 this.label10.Size = new System.Drawing.Size(231, 13); 450 this.label10.TabIndex = 16; 451 this.label10.Text = "Messages sent or received on the conversation"; 452 // 453 // label9 454 // 455 this.label9.AutoSize = true; 456 this.label9.Location = new System.Drawing.Point(87, 16); 457 this.label9.Name = "label9"; 458 this.label9.Size = new System.Drawing.Size(109, 13); 459 this.label9.TabIndex = 15; 460 this.label9.Text = "Conversation Handle:"; 461 // 462 // txtConversationHandle 463 // 464 this.txtConversationHandle.Location = new System.Drawing.Point(207, 13); 465 this.txtConversationHandle.Multiline = true; 466 this.txtConversationHandle.Name = "txtConversationHandle"; 467 this.txtConversationHandle.ReadOnly = true; 468 this.txtConversationHandle.Size = new System.Drawing.Size(279, 21); 469 this.txtConversationHandle.TabIndex = 12; 470 // 471 // frmMain 472 // 473 this.ClientSize = new System.Drawing.Size(504, 526); 474 this.Controls.Add(this.tabControl); 475 this.Name = "frmMain"; 476 this.Text = "Shopping Cart Client Sample"; 477 this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmMain_FormClosed); 478 this.Load += new System.EventHandler(this.frmMain_Load); 479 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); 480 this.tabControl.ResumeLayout(false); 481 this.tabApplication.ResumeLayout(false); 482 this.tabApplication.PerformLayout(); 483 this.paneShop.ResumeLayout(false); 484 this.paneShop.PerformLayout(); 485 ((System.ComponentModel.ISupportInitialize)(this.nudQuantity)).EndInit(); 486 this.paneFinish.ResumeLayout(false); 487 this.paneFinish.PerformLayout(); 488 this.paneData.ResumeLayout(false); 489 this.paneCreateOrder.ResumeLayout(false); 490 this.paneCreateOrder.PerformLayout(); 491 ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); 492 this.tabTrace.ResumeLayout(false); 493 this.tabTrace.PerformLayout(); 494 this.ResumeLayout(false); 495 496 } 497 498 #endregion 499 500 private System.Windows.Forms.DataGridView dataGridView1; 501 private System.Windows.Forms.TabControl tabControl; 502 private System.Windows.Forms.TabPage tabApplication; 503 private System.Windows.Forms.TextBox txtLabelFinish; 504 private System.Windows.Forms.TextBox txtLabelShop; 505 private System.Windows.Forms.TextBox txtLabelCreateOrder; 506 private System.Windows.Forms.Panel paneCreateOrder; 507 private System.Windows.Forms.PictureBox pictureBox1; 508 private System.Windows.Forms.Button btnCreateOrder; 509 private System.Windows.Forms.Panel paneShop; 510 private System.Windows.Forms.NumericUpDown nudQuantity; 511 private System.Windows.Forms.Button btnConfirm; 512 private System.Windows.Forms.Button btnRemove; 513 private System.Windows.Forms.ListBox lstItems; 514 private System.Windows.Forms.Button btnAdd; 515 private System.Windows.Forms.TextBox txtUnitPrice; 516 private System.Windows.Forms.ComboBox cboItem; 517 private System.Windows.Forms.Panel paneFinish; 518 private System.Windows.Forms.TextBox txtTotalAmount; 519 private System.Windows.Forms.TextBox txtNumberItems; 520 private System.Windows.Forms.Panel paneData; 521 private System.Windows.Forms.TabPage tabTrace; 522 private System.Windows.Forms.TextBox txtConversationHandle; 523 private System.Windows.Forms.TextBox textBox1; 524 private System.Windows.Forms.Label label4; 525 private System.Windows.Forms.Label label3; 526 private System.Windows.Forms.Label label2; 527 private System.Windows.Forms.Label label1; 528 private System.Windows.Forms.Label label8; 529 private System.Windows.Forms.Label label7; 530 private System.Windows.Forms.Label label6; 531 private System.Windows.Forms.Label label5; 532 private System.Windows.Forms.Label label10; 533 private System.Windows.Forms.Label label9; 534 private System.Windows.Forms.TextBox txtLog; 535 536 537 538 539 540 541 } 542} 543