Form1.Designer.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. namespace TestApp
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.label2 = new System.Windows.Forms.Label();
  30. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  31. this.dataGridView2 = new System.Windows.Forms.DataGridView();
  32. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  33. ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // label1
  37. //
  38. this.label1.AutoSize = true;
  39. this.label1.Location = new System.Drawing.Point(12, 5);
  40. this.label1.Name = "label1";
  41. this.label1.Size = new System.Drawing.Size(38, 13);
  42. this.label1.TabIndex = 3;
  43. this.label1.Text = "Orders";
  44. //
  45. // label2
  46. //
  47. this.label2.AutoSize = true;
  48. this.label2.Location = new System.Drawing.Point(12, 180);
  49. this.label2.Name = "label2";
  50. this.label2.Size = new System.Drawing.Size(68, 13);
  51. this.label2.TabIndex = 4;
  52. this.label2.Text = "Order Details";
  53. //
  54. // dataGridView1
  55. //
  56. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  57. this.dataGridView1.Location = new System.Drawing.Point(12, 21);
  58. this.dataGridView1.MultiSelect = false;
  59. this.dataGridView1.Name = "dataGridView1";
  60. this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  61. this.dataGridView1.Size = new System.Drawing.Size(513, 150);
  62. this.dataGridView1.TabIndex = 5;
  63. this.dataGridView1.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged);
  64. this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
  65. //
  66. // dataGridView2
  67. //
  68. this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  69. this.dataGridView2.Location = new System.Drawing.Point(12, 196);
  70. this.dataGridView2.MultiSelect = false;
  71. this.dataGridView2.Name = "dataGridView2";
  72. this.dataGridView2.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  73. this.dataGridView2.Size = new System.Drawing.Size(513, 150);
  74. this.dataGridView2.TabIndex = 6;
  75. //
  76. // Form1
  77. //
  78. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  79. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  80. this.ClientSize = new System.Drawing.Size(537, 378);
  81. this.Controls.Add(this.dataGridView2);
  82. this.Controls.Add(this.dataGridView1);
  83. this.Controls.Add(this.label2);
  84. this.Controls.Add(this.label1);
  85. this.MaximizeBox = false;
  86. this.Name = "Form1";
  87. this.Text = "Form1";
  88. this.Load += new System.EventHandler(this.Form1_Load);
  89. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  90. ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
  91. this.ResumeLayout(false);
  92. this.PerformLayout();
  93. }
  94. #endregion
  95. private System.Windows.Forms.Label label1;
  96. private System.Windows.Forms.Label label2;
  97. private System.Windows.Forms.DataGridView dataGridView1;
  98. private System.Windows.Forms.DataGridView dataGridView2;
  99. }
  100. }