DataGridUI.Designer.cs 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. 
  2. namespace ProjectManagementSystem.UI
  3. {
  4. partial class DataGridUI
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.panel1 = new System.Windows.Forms.Panel();
  30. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  31. this.panel1.SuspendLayout();
  32. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // panel1
  36. //
  37. this.panel1.Controls.Add(this.dataGridView1);
  38. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  39. this.panel1.Location = new System.Drawing.Point(0, 0);
  40. this.panel1.Margin = new System.Windows.Forms.Padding(6);
  41. this.panel1.Name = "panel1";
  42. this.panel1.Size = new System.Drawing.Size(501, 341);
  43. this.panel1.TabIndex = 2;
  44. //
  45. // dataGridView1
  46. //
  47. this.dataGridView1.AllowUserToAddRows = false;
  48. this.dataGridView1.AllowUserToDeleteRows = false;
  49. this.dataGridView1.AllowUserToResizeRows = false;
  50. this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
  51. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  52. this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
  53. this.dataGridView1.Location = new System.Drawing.Point(0, 0);
  54. this.dataGridView1.Margin = new System.Windows.Forms.Padding(6);
  55. this.dataGridView1.MultiSelect = false;
  56. this.dataGridView1.Name = "dataGridView1";
  57. this.dataGridView1.ReadOnly = true;
  58. this.dataGridView1.RowHeadersWidth = 5;
  59. this.dataGridView1.RowTemplate.Height = 23;
  60. this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  61. this.dataGridView1.Size = new System.Drawing.Size(501, 341);
  62. this.dataGridView1.TabIndex = 0;
  63. //
  64. // DataGridUI
  65. //
  66. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  67. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  68. this.Controls.Add(this.panel1);
  69. this.Name = "DataGridUI";
  70. this.Size = new System.Drawing.Size(501, 341);
  71. this.panel1.ResumeLayout(false);
  72. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  73. this.ResumeLayout(false);
  74. }
  75. #endregion
  76. private System.Windows.Forms.Panel panel1;
  77. private System.Windows.Forms.DataGridView dataGridView1;
  78. }
  79. }