ManagerPanel.Designer.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. namespace warehouse
  2. {
  3. partial class ManagerPanel
  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.dataGridView1 = new System.Windows.Forms.DataGridView();
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.pic_name = new System.Windows.Forms.DataGridViewTextBoxColumn();
  31. this.dateFrom = new System.Windows.Forms.DataGridViewTextBoxColumn();
  32. this.DateTo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33. this.weight = new System.Windows.Forms.DataGridViewTextBoxColumn();
  34. this.phone_number = new System.Windows.Forms.DataGridViewTextBoxColumn();
  35. this.price = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.button2 = new System.Windows.Forms.Button();
  37. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // dataGridView1
  41. //
  42. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  43. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  44. this.pic_name,
  45. this.dateFrom,
  46. this.DateTo,
  47. this.weight,
  48. this.phone_number,
  49. this.price});
  50. this.dataGridView1.Location = new System.Drawing.Point(13, 13);
  51. this.dataGridView1.Name = "dataGridView1";
  52. this.dataGridView1.Size = new System.Drawing.Size(644, 261);
  53. this.dataGridView1.TabIndex = 0;
  54. //
  55. // button1
  56. //
  57. this.button1.Location = new System.Drawing.Point(13, 285);
  58. this.button1.Name = "button1";
  59. this.button1.Size = new System.Drawing.Size(77, 36);
  60. this.button1.TabIndex = 1;
  61. this.button1.Text = "View all data";
  62. this.button1.UseVisualStyleBackColor = true;
  63. this.button1.Click += new System.EventHandler(this.button1_Click);
  64. //
  65. // pic_name
  66. //
  67. this.pic_name.HeaderText = "pic_name";
  68. this.pic_name.Name = "pic_name";
  69. //
  70. // dateFrom
  71. //
  72. this.dateFrom.HeaderText = "dateFrom";
  73. this.dateFrom.Name = "dateFrom";
  74. //
  75. // DateTo
  76. //
  77. this.DateTo.HeaderText = "DateTo";
  78. this.DateTo.Name = "DateTo";
  79. //
  80. // weight
  81. //
  82. this.weight.HeaderText = "weight";
  83. this.weight.Name = "weight";
  84. //
  85. // phone_number
  86. //
  87. this.phone_number.HeaderText = "phone_number";
  88. this.phone_number.Name = "phone_number";
  89. //
  90. // price
  91. //
  92. this.price.HeaderText = "price";
  93. this.price.Name = "price";
  94. //
  95. // button2
  96. //
  97. this.button2.Location = new System.Drawing.Point(575, 290);
  98. this.button2.Name = "button2";
  99. this.button2.Size = new System.Drawing.Size(82, 36);
  100. this.button2.TabIndex = 2;
  101. this.button2.Text = "Close";
  102. this.button2.UseVisualStyleBackColor = true;
  103. this.button2.Click += new System.EventHandler(this.button2_Click);
  104. //
  105. // ManagerPanel
  106. //
  107. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  108. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  109. this.BackColor = System.Drawing.SystemColors.WindowFrame;
  110. this.ClientSize = new System.Drawing.Size(663, 338);
  111. this.Controls.Add(this.button2);
  112. this.Controls.Add(this.button1);
  113. this.Controls.Add(this.dataGridView1);
  114. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  115. this.Name = "ManagerPanel";
  116. this.Text = "ManagerPanel";
  117. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  118. this.ResumeLayout(false);
  119. }
  120. #endregion
  121. private System.Windows.Forms.DataGridView dataGridView1;
  122. private System.Windows.Forms.Button button1;
  123. private System.Windows.Forms.DataGridViewTextBoxColumn pic_name;
  124. private System.Windows.Forms.DataGridViewTextBoxColumn dateFrom;
  125. private System.Windows.Forms.DataGridViewTextBoxColumn DateTo;
  126. private System.Windows.Forms.DataGridViewTextBoxColumn weight;
  127. private System.Windows.Forms.DataGridViewTextBoxColumn phone_number;
  128. private System.Windows.Forms.DataGridViewTextBoxColumn price;
  129. private System.Windows.Forms.Button button2;
  130. }
  131. }