PersonSelection.Designer.cs 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. namespace ddq
  2. {
  3. partial class PersonSelectionDialog
  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.label1 = new System.Windows.Forms.Label();
  30. this.label2 = new System.Windows.Forms.Label();
  31. this.chkAll = new System.Windows.Forms.CheckBox();
  32. this.chkPM = new System.Windows.Forms.CheckBox();
  33. this.chkResearcher = new System.Windows.Forms.CheckBox();
  34. this.grdStaffList = new System.Windows.Forms.DataGridView();
  35. this.btnOK = new System.Windows.Forms.Button();
  36. this.lblMessageForNoStaff = new System.Windows.Forms.Label();
  37. this.panel1.SuspendLayout();
  38. ((System.ComponentModel.ISupportInitialize)(this.grdStaffList)).BeginInit();
  39. this.SuspendLayout();
  40. //
  41. // panel1
  42. //
  43. this.panel1.Controls.Add(this.lblMessageForNoStaff);
  44. this.panel1.Controls.Add(this.btnOK);
  45. this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
  46. this.panel1.Location = new System.Drawing.Point(0, 368);
  47. this.panel1.Name = "panel1";
  48. this.panel1.Size = new System.Drawing.Size(519, 46);
  49. this.panel1.TabIndex = 0;
  50. //
  51. // label1
  52. //
  53. this.label1.AutoSize = true;
  54. this.label1.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  55. this.label1.Location = new System.Drawing.Point(22, 21);
  56. this.label1.Name = "label1";
  57. this.label1.Size = new System.Drawing.Size(182, 18);
  58. this.label1.TabIndex = 1;
  59. this.label1.Text = "Select a staff in the list below";
  60. //
  61. // label2
  62. //
  63. this.label2.AutoSize = true;
  64. this.label2.Location = new System.Drawing.Point(25, 60);
  65. this.label2.Name = "label2";
  66. this.label2.Size = new System.Drawing.Size(36, 18);
  67. this.label2.TabIndex = 2;
  68. this.label2.Text = "Role";
  69. //
  70. // chkAll
  71. //
  72. this.chkAll.AutoSize = true;
  73. this.chkAll.Checked = true;
  74. this.chkAll.CheckState = System.Windows.Forms.CheckState.Checked;
  75. this.chkAll.Location = new System.Drawing.Point(77, 59);
  76. this.chkAll.Name = "chkAll";
  77. this.chkAll.Size = new System.Drawing.Size(44, 22);
  78. this.chkAll.TabIndex = 3;
  79. this.chkAll.Text = "All";
  80. this.chkAll.UseVisualStyleBackColor = true;
  81. this.chkAll.CheckedChanged += new System.EventHandler(this.chkAll_CheckedChanged);
  82. //
  83. // chkPM
  84. //
  85. this.chkPM.AutoSize = true;
  86. this.chkPM.Location = new System.Drawing.Point(146, 59);
  87. this.chkPM.Name = "chkPM";
  88. this.chkPM.Size = new System.Drawing.Size(138, 22);
  89. this.chkPM.TabIndex = 4;
  90. this.chkPM.Text = "Portfolio Manager";
  91. this.chkPM.UseVisualStyleBackColor = true;
  92. this.chkPM.CheckedChanged += new System.EventHandler(this.chkPM_CheckedChanged);
  93. //
  94. // chkResearcher
  95. //
  96. this.chkResearcher.AutoSize = true;
  97. this.chkResearcher.Location = new System.Drawing.Point(304, 59);
  98. this.chkResearcher.Name = "chkResearcher";
  99. this.chkResearcher.Size = new System.Drawing.Size(96, 22);
  100. this.chkResearcher.TabIndex = 5;
  101. this.chkResearcher.Text = "Researcher";
  102. this.chkResearcher.UseVisualStyleBackColor = true;
  103. this.chkResearcher.CheckedChanged += new System.EventHandler(this.chkResearcher_CheckedChanged);
  104. //
  105. // grdStaffList
  106. //
  107. this.grdStaffList.AllowUserToAddRows = false;
  108. this.grdStaffList.AllowUserToDeleteRows = false;
  109. this.grdStaffList.AllowUserToOrderColumns = true;
  110. this.grdStaffList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  111. this.grdStaffList.Location = new System.Drawing.Point(28, 106);
  112. this.grdStaffList.Name = "grdStaffList";
  113. this.grdStaffList.ReadOnly = true;
  114. this.grdStaffList.RowTemplate.Height = 23;
  115. this.grdStaffList.Size = new System.Drawing.Size(458, 234);
  116. this.grdStaffList.TabIndex = 6;
  117. this.grdStaffList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdStaffList_CellClick);
  118. this.grdStaffList.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdStaffList_CellContentClick);
  119. //
  120. // btnOK
  121. //
  122. this.btnOK.Location = new System.Drawing.Point(411, 12);
  123. this.btnOK.Name = "btnOK";
  124. this.btnOK.Size = new System.Drawing.Size(75, 23);
  125. this.btnOK.TabIndex = 0;
  126. this.btnOK.Text = "OK";
  127. this.btnOK.UseVisualStyleBackColor = true;
  128. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  129. //
  130. // lblMessageForNoStaff
  131. //
  132. this.lblMessageForNoStaff.AutoSize = true;
  133. this.lblMessageForNoStaff.ForeColor = System.Drawing.Color.Red;
  134. this.lblMessageForNoStaff.Location = new System.Drawing.Point(15, 14);
  135. this.lblMessageForNoStaff.Name = "lblMessageForNoStaff";
  136. this.lblMessageForNoStaff.Size = new System.Drawing.Size(280, 18);
  137. this.lblMessageForNoStaff.TabIndex = 1;
  138. this.lblMessageForNoStaff.Text = "Please add at least one staff in <People> Tab";
  139. this.lblMessageForNoStaff.Visible = false;
  140. //
  141. // PersonSelectionDialog
  142. //
  143. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 18F);
  144. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  145. this.BackColor = System.Drawing.Color.WhiteSmoke;
  146. this.ClientSize = new System.Drawing.Size(519, 414);
  147. this.Controls.Add(this.grdStaffList);
  148. this.Controls.Add(this.chkResearcher);
  149. this.Controls.Add(this.chkPM);
  150. this.Controls.Add(this.chkAll);
  151. this.Controls.Add(this.label2);
  152. this.Controls.Add(this.label1);
  153. this.Controls.Add(this.panel1);
  154. this.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  155. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  156. this.MaximizeBox = false;
  157. this.MinimizeBox = false;
  158. this.Name = "PersonSelectionDialog";
  159. this.ShowInTaskbar = false;
  160. this.Text = "Staff Selection";
  161. this.panel1.ResumeLayout(false);
  162. this.panel1.PerformLayout();
  163. ((System.ComponentModel.ISupportInitialize)(this.grdStaffList)).EndInit();
  164. this.ResumeLayout(false);
  165. this.PerformLayout();
  166. }
  167. #endregion
  168. private System.Windows.Forms.Panel panel1;
  169. private System.Windows.Forms.Label label1;
  170. private System.Windows.Forms.Label label2;
  171. private System.Windows.Forms.CheckBox chkAll;
  172. private System.Windows.Forms.CheckBox chkPM;
  173. private System.Windows.Forms.CheckBox chkResearcher;
  174. private System.Windows.Forms.DataGridView grdStaffList;
  175. private System.Windows.Forms.Button btnOK;
  176. private System.Windows.Forms.Label lblMessageForNoStaff;
  177. }
  178. }