| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- namespace ddq
- {
- partial class PersonSelectionDialog
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.panel1 = new System.Windows.Forms.Panel();
- this.label1 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.chkAll = new System.Windows.Forms.CheckBox();
- this.chkPM = new System.Windows.Forms.CheckBox();
- this.chkResearcher = new System.Windows.Forms.CheckBox();
- this.grdStaffList = new System.Windows.Forms.DataGridView();
- this.btnOK = new System.Windows.Forms.Button();
- this.lblMessageForNoStaff = new System.Windows.Forms.Label();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.grdStaffList)).BeginInit();
- this.SuspendLayout();
- //
- // panel1
- //
- this.panel1.Controls.Add(this.lblMessageForNoStaff);
- this.panel1.Controls.Add(this.btnOK);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.panel1.Location = new System.Drawing.Point(0, 368);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(519, 46);
- this.panel1.TabIndex = 0;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.Location = new System.Drawing.Point(22, 21);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(182, 18);
- this.label1.TabIndex = 1;
- this.label1.Text = "Select a staff in the list below";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(25, 60);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(36, 18);
- this.label2.TabIndex = 2;
- this.label2.Text = "Role";
- //
- // chkAll
- //
- this.chkAll.AutoSize = true;
- this.chkAll.Checked = true;
- this.chkAll.CheckState = System.Windows.Forms.CheckState.Checked;
- this.chkAll.Location = new System.Drawing.Point(77, 59);
- this.chkAll.Name = "chkAll";
- this.chkAll.Size = new System.Drawing.Size(44, 22);
- this.chkAll.TabIndex = 3;
- this.chkAll.Text = "All";
- this.chkAll.UseVisualStyleBackColor = true;
- this.chkAll.CheckedChanged += new System.EventHandler(this.chkAll_CheckedChanged);
- //
- // chkPM
- //
- this.chkPM.AutoSize = true;
- this.chkPM.Location = new System.Drawing.Point(146, 59);
- this.chkPM.Name = "chkPM";
- this.chkPM.Size = new System.Drawing.Size(138, 22);
- this.chkPM.TabIndex = 4;
- this.chkPM.Text = "Portfolio Manager";
- this.chkPM.UseVisualStyleBackColor = true;
- this.chkPM.CheckedChanged += new System.EventHandler(this.chkPM_CheckedChanged);
- //
- // chkResearcher
- //
- this.chkResearcher.AutoSize = true;
- this.chkResearcher.Location = new System.Drawing.Point(304, 59);
- this.chkResearcher.Name = "chkResearcher";
- this.chkResearcher.Size = new System.Drawing.Size(96, 22);
- this.chkResearcher.TabIndex = 5;
- this.chkResearcher.Text = "Researcher";
- this.chkResearcher.UseVisualStyleBackColor = true;
- this.chkResearcher.CheckedChanged += new System.EventHandler(this.chkResearcher_CheckedChanged);
- //
- // grdStaffList
- //
- this.grdStaffList.AllowUserToAddRows = false;
- this.grdStaffList.AllowUserToDeleteRows = false;
- this.grdStaffList.AllowUserToOrderColumns = true;
- this.grdStaffList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.grdStaffList.Location = new System.Drawing.Point(28, 106);
- this.grdStaffList.Name = "grdStaffList";
- this.grdStaffList.ReadOnly = true;
- this.grdStaffList.RowTemplate.Height = 23;
- this.grdStaffList.Size = new System.Drawing.Size(458, 234);
- this.grdStaffList.TabIndex = 6;
- this.grdStaffList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdStaffList_CellClick);
- this.grdStaffList.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdStaffList_CellContentClick);
- //
- // btnOK
- //
- this.btnOK.Location = new System.Drawing.Point(411, 12);
- this.btnOK.Name = "btnOK";
- this.btnOK.Size = new System.Drawing.Size(75, 23);
- this.btnOK.TabIndex = 0;
- this.btnOK.Text = "OK";
- this.btnOK.UseVisualStyleBackColor = true;
- this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
- //
- // lblMessageForNoStaff
- //
- this.lblMessageForNoStaff.AutoSize = true;
- this.lblMessageForNoStaff.ForeColor = System.Drawing.Color.Red;
- this.lblMessageForNoStaff.Location = new System.Drawing.Point(15, 14);
- this.lblMessageForNoStaff.Name = "lblMessageForNoStaff";
- this.lblMessageForNoStaff.Size = new System.Drawing.Size(280, 18);
- this.lblMessageForNoStaff.TabIndex = 1;
- this.lblMessageForNoStaff.Text = "Please add at least one staff in <People> Tab";
- this.lblMessageForNoStaff.Visible = false;
- //
- // PersonSelectionDialog
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 18F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.WhiteSmoke;
- this.ClientSize = new System.Drawing.Size(519, 414);
- this.Controls.Add(this.grdStaffList);
- this.Controls.Add(this.chkResearcher);
- this.Controls.Add(this.chkPM);
- this.Controls.Add(this.chkAll);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.panel1);
- this.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "PersonSelectionDialog";
- this.ShowInTaskbar = false;
- this.Text = "Staff Selection";
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.grdStaffList)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.CheckBox chkAll;
- private System.Windows.Forms.CheckBox chkPM;
- private System.Windows.Forms.CheckBox chkResearcher;
- private System.Windows.Forms.DataGridView grdStaffList;
- private System.Windows.Forms.Button btnOK;
- private System.Windows.Forms.Label lblMessageForNoStaff;
- }
- }
|