UIPerson.Designer.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. namespace DataManager
  2. {
  3. partial class UIPerson
  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.panel1 = new System.Windows.Forms.Panel();
  29. this.panel2 = new System.Windows.Forms.Panel();
  30. this.panel3 = new System.Windows.Forms.Panel();
  31. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  32. this.btnAddFund = new System.Windows.Forms.Button();
  33. this.lblName = new System.Windows.Forms.Label();
  34. this.textBox1 = new System.Windows.Forms.TextBox();
  35. this.panel1.SuspendLayout();
  36. this.panel2.SuspendLayout();
  37. this.panel3.SuspendLayout();
  38. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  39. this.SuspendLayout();
  40. //
  41. // panel1
  42. //
  43. this.panel1.Controls.Add(this.textBox1);
  44. this.panel1.Controls.Add(this.lblName);
  45. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  46. this.panel1.Location = new System.Drawing.Point(0, 0);
  47. this.panel1.Name = "panel1";
  48. this.panel1.Size = new System.Drawing.Size(800, 192);
  49. this.panel1.TabIndex = 0;
  50. //
  51. // panel2
  52. //
  53. this.panel2.Controls.Add(this.dataGridView1);
  54. this.panel2.Controls.Add(this.panel3);
  55. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  56. this.panel2.Location = new System.Drawing.Point(0, 192);
  57. this.panel2.Name = "panel2";
  58. this.panel2.Size = new System.Drawing.Size(800, 258);
  59. this.panel2.TabIndex = 1;
  60. //
  61. // panel3
  62. //
  63. this.panel3.Controls.Add(this.btnAddFund);
  64. this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
  65. this.panel3.Location = new System.Drawing.Point(0, 0);
  66. this.panel3.Name = "panel3";
  67. this.panel3.Size = new System.Drawing.Size(800, 56);
  68. this.panel3.TabIndex = 0;
  69. //
  70. // dataGridView1
  71. //
  72. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  73. this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
  74. this.dataGridView1.Location = new System.Drawing.Point(0, 56);
  75. this.dataGridView1.Name = "dataGridView1";
  76. this.dataGridView1.RowTemplate.Height = 23;
  77. this.dataGridView1.Size = new System.Drawing.Size(800, 202);
  78. this.dataGridView1.TabIndex = 1;
  79. //
  80. // btnAddFund
  81. //
  82. this.btnAddFund.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  83. this.btnAddFund.BackColor = System.Drawing.Color.Transparent;
  84. this.btnAddFund.Location = new System.Drawing.Point(667, 15);
  85. this.btnAddFund.Name = "btnAddFund";
  86. this.btnAddFund.Size = new System.Drawing.Size(121, 28);
  87. this.btnAddFund.TabIndex = 2;
  88. this.btnAddFund.Text = "添 加 基 金";
  89. this.btnAddFund.UseVisualStyleBackColor = false;
  90. //
  91. // lblName
  92. //
  93. this.lblName.AutoSize = true;
  94. this.lblName.Location = new System.Drawing.Point(21, 22);
  95. this.lblName.Name = "lblName";
  96. this.lblName.Size = new System.Drawing.Size(32, 17);
  97. this.lblName.TabIndex = 0;
  98. this.lblName.Text = "姓名";
  99. //
  100. // textBox1
  101. //
  102. this.textBox1.Location = new System.Drawing.Point(72, 19);
  103. this.textBox1.Name = "textBox1";
  104. this.textBox1.Size = new System.Drawing.Size(132, 23);
  105. this.textBox1.TabIndex = 1;
  106. //
  107. // UIPerson
  108. //
  109. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  110. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  111. this.ClientSize = new System.Drawing.Size(800, 450);
  112. this.Controls.Add(this.panel2);
  113. this.Controls.Add(this.panel1);
  114. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  115. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  116. this.Name = "UIPerson";
  117. this.Text = "人员";
  118. this.panel1.ResumeLayout(false);
  119. this.panel1.PerformLayout();
  120. this.panel2.ResumeLayout(false);
  121. this.panel3.ResumeLayout(false);
  122. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  123. this.ResumeLayout(false);
  124. }
  125. #endregion
  126. private System.Windows.Forms.Panel panel1;
  127. private System.Windows.Forms.Panel panel2;
  128. private System.Windows.Forms.DataGridView dataGridView1;
  129. private System.Windows.Forms.Panel panel3;
  130. private System.Windows.Forms.Button btnAddFund;
  131. private System.Windows.Forms.Label lblName;
  132. private System.Windows.Forms.TextBox textBox1;
  133. }
  134. }