00001 namespace Mcs.Epm.MicrosoftProject.mpFx.WinForms
00002 {
00003 partial class ProjectSelectionForm
00004 {
00005
00006
00007
00008 private System.ComponentModel.IContainer components = null;
00009
00010
00011
00012
00013
00014 protected override void Dispose(bool disposing)
00015 {
00016 if (disposing && (components != null))
00017 {
00018 components.Dispose();
00019 }
00020 base.Dispose(disposing);
00021 }
00022
00023 #region Windows Form Designer generated code
00024
00025
00026
00027
00028
00029 private void InitializeComponent()
00030 {
00031 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProjectSelectionForm));
00032 this.selectProjectsLabel = new System.Windows.Forms.Label();
00033 this.panel1 = new System.Windows.Forms.Panel();
00034 this.selectedProjectsDataGridView = new System.Windows.Forms.DataGridView();
00035 this.projectUIDColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00036 this.projectCheckColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
00037 this.projectNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00038 this.panel2 = new System.Windows.Forms.Panel();
00039 this.panel3 = new System.Windows.Forms.Panel();
00040 this.okButton = new System.Windows.Forms.Button();
00041 this.cancelButton = new System.Windows.Forms.Button();
00042 this.toolStrip = new System.Windows.Forms.ToolStrip();
00043 this.selectAllToolStripButton = new System.Windows.Forms.ToolStripButton();
00044 this.unselectAllToolStripButton = new System.Windows.Forms.ToolStripButton();
00045 this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
00046 this.refreshToolStripButton = new System.Windows.Forms.ToolStripButton();
00047 this.panel1.SuspendLayout();
00048 ((System.ComponentModel.ISupportInitialize)(this.selectedProjectsDataGridView)).BeginInit();
00049 this.panel2.SuspendLayout();
00050 this.panel3.SuspendLayout();
00051 this.toolStrip.SuspendLayout();
00052 this.SuspendLayout();
00053
00054
00055
00056 this.selectProjectsLabel.Dock = System.Windows.Forms.DockStyle.Top;
00057 this.selectProjectsLabel.Location = new System.Drawing.Point(0, 0);
00058 this.selectProjectsLabel.Name = "selectProjectsLabel";
00059 this.selectProjectsLabel.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
00060 this.selectProjectsLabel.Size = new System.Drawing.Size(491, 27);
00061 this.selectProjectsLabel.TabIndex = 0;
00062 this.selectProjectsLabel.Text = "Check the projects you would like to select";
00063 this.selectProjectsLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
00064
00065
00066
00067 this.panel1.Controls.Add(this.selectedProjectsDataGridView);
00068 this.panel1.Controls.Add(this.panel2);
00069 this.panel1.Controls.Add(this.toolStrip);
00070 this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
00071 this.panel1.Location = new System.Drawing.Point(0, 27);
00072 this.panel1.Name = "panel1";
00073 this.panel1.Size = new System.Drawing.Size(491, 475);
00074 this.panel1.TabIndex = 1;
00075
00076
00077
00078 this.selectedProjectsDataGridView.AllowUserToAddRows = false;
00079 this.selectedProjectsDataGridView.AllowUserToDeleteRows = false;
00080 this.selectedProjectsDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
00081 this.selectedProjectsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
00082 this.projectUIDColumn,
00083 this.projectCheckColumn,
00084 this.projectNameColumn});
00085 this.selectedProjectsDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
00086 this.selectedProjectsDataGridView.Location = new System.Drawing.Point(0, 25);
00087 this.selectedProjectsDataGridView.Name = "selectedProjectsDataGridView";
00088 this.selectedProjectsDataGridView.RowHeadersVisible = false;
00089 this.selectedProjectsDataGridView.Size = new System.Drawing.Size(491, 414);
00090 this.selectedProjectsDataGridView.TabIndex = 2;
00091
00092
00093
00094 this.projectUIDColumn.HeaderText = "";
00095 this.projectUIDColumn.Name = "projectUIDColumn";
00096 this.projectUIDColumn.ReadOnly = true;
00097 this.projectUIDColumn.Visible = false;
00098
00099
00100
00101 this.projectCheckColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
00102 this.projectCheckColumn.HeaderText = "Selected";
00103 this.projectCheckColumn.Name = "projectCheckColumn";
00104 this.projectCheckColumn.Width = 55;
00105
00106
00107
00108 this.projectNameColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
00109 this.projectNameColumn.HeaderText = "Project Name";
00110 this.projectNameColumn.Name = "projectNameColumn";
00111 this.projectNameColumn.ReadOnly = true;
00112 this.projectNameColumn.Width = 96;
00113
00114
00115
00116 this.panel2.Controls.Add(this.panel3);
00117 this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
00118 this.panel2.Location = new System.Drawing.Point(0, 439);
00119 this.panel2.Name = "panel2";
00120 this.panel2.Size = new System.Drawing.Size(491, 36);
00121 this.panel2.TabIndex = 1;
00122
00123
00124
00125 this.panel3.Controls.Add(this.okButton);
00126 this.panel3.Controls.Add(this.cancelButton);
00127 this.panel3.Dock = System.Windows.Forms.DockStyle.Right;
00128 this.panel3.Location = new System.Drawing.Point(291, 0);
00129 this.panel3.Name = "panel3";
00130 this.panel3.Size = new System.Drawing.Size(200, 36);
00131 this.panel3.TabIndex = 2;
00132
00133
00134
00135 this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
00136 this.okButton.Enabled = false;
00137 this.okButton.Location = new System.Drawing.Point(33, 7);
00138 this.okButton.Name = "okButton";
00139 this.okButton.Size = new System.Drawing.Size(75, 23);
00140 this.okButton.TabIndex = 1;
00141 this.okButton.Text = "&OK";
00142 this.okButton.UseVisualStyleBackColor = true;
00143 this.okButton.Click += new System.EventHandler(this.okButton_Click);
00144
00145
00146
00147 this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
00148 this.cancelButton.Location = new System.Drawing.Point(114, 7);
00149 this.cancelButton.Name = "cancelButton";
00150 this.cancelButton.Size = new System.Drawing.Size(75, 23);
00151 this.cancelButton.TabIndex = 0;
00152 this.cancelButton.Text = "&Cancel";
00153 this.cancelButton.UseVisualStyleBackColor = true;
00154 this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
00155
00156
00157
00158 this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
00159 this.selectAllToolStripButton,
00160 this.unselectAllToolStripButton,
00161 this.toolStripSeparator1,
00162 this.refreshToolStripButton});
00163 this.toolStrip.Location = new System.Drawing.Point(0, 0);
00164 this.toolStrip.Name = "toolStrip";
00165 this.toolStrip.Size = new System.Drawing.Size(491, 25);
00166 this.toolStrip.TabIndex = 0;
00167 this.toolStrip.Text = "toolStrip1";
00168
00169
00170
00171 this.selectAllToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
00172 this.selectAllToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("selectAllToolStripButton.Image")));
00173 this.selectAllToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
00174 this.selectAllToolStripButton.Name = "selectAllToolStripButton";
00175 this.selectAllToolStripButton.Size = new System.Drawing.Size(59, 22);
00176 this.selectAllToolStripButton.Text = "&Select All";
00177 this.selectAllToolStripButton.Click += new System.EventHandler(this.selectAllToolStripButton_Click);
00178
00179
00180
00181 this.unselectAllToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
00182 this.unselectAllToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("unselectAllToolStripButton.Image")));
00183 this.unselectAllToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
00184 this.unselectAllToolStripButton.Name = "unselectAllToolStripButton";
00185 this.unselectAllToolStripButton.Size = new System.Drawing.Size(73, 22);
00186 this.unselectAllToolStripButton.Text = "&Unselect All";
00187 this.unselectAllToolStripButton.Click += new System.EventHandler(this.unselectAllToolStripButton_Click);
00188
00189
00190
00191 this.toolStripSeparator1.Name = "toolStripSeparator1";
00192 this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
00193
00194
00195
00196 this.refreshToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
00197 this.refreshToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("refreshToolStripButton.Image")));
00198 this.refreshToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
00199 this.refreshToolStripButton.Name = "refreshToolStripButton";
00200 this.refreshToolStripButton.Size = new System.Drawing.Size(50, 22);
00201 this.refreshToolStripButton.Text = "&Refresh";
00202 this.refreshToolStripButton.Click += new System.EventHandler(this.refreshToolStripButton_Click);
00203
00204
00205
00206 this.AcceptButton = this.okButton;
00207 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
00208 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
00209 this.CancelButton = this.cancelButton;
00210 this.ClientSize = new System.Drawing.Size(491, 502);
00211 this.Controls.Add(this.panel1);
00212 this.Controls.Add(this.selectProjectsLabel);
00213 this.Name = "ProjectSelectionForm";
00214 this.ShowIcon = false;
00215 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
00216 this.Text = "Select Projects";
00217 this.Shown += new System.EventHandler(this.ProjectSelectionForm_Shown);
00218 this.panel1.ResumeLayout(false);
00219 this.panel1.PerformLayout();
00220 ((System.ComponentModel.ISupportInitialize)(this.selectedProjectsDataGridView)).EndInit();
00221 this.panel2.ResumeLayout(false);
00222 this.panel3.ResumeLayout(false);
00223 this.toolStrip.ResumeLayout(false);
00224 this.toolStrip.PerformLayout();
00225 this.ResumeLayout(false);
00226
00227 }
00228
00229 #endregion
00230
00231 private System.Windows.Forms.Label selectProjectsLabel;
00232 private System.Windows.Forms.Panel panel1;
00233 private System.Windows.Forms.Panel panel2;
00234 private System.Windows.Forms.Button cancelButton;
00235 private System.Windows.Forms.ToolStrip toolStrip;
00236 private System.Windows.Forms.ToolStripButton selectAllToolStripButton;
00237 private System.Windows.Forms.ToolStripButton unselectAllToolStripButton;
00238 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
00239 private System.Windows.Forms.ToolStripButton refreshToolStripButton;
00240 private System.Windows.Forms.DataGridView selectedProjectsDataGridView;
00241 private System.Windows.Forms.Button okButton;
00242 private System.Windows.Forms.DataGridViewTextBoxColumn projectUIDColumn;
00243 private System.Windows.Forms.DataGridViewCheckBoxColumn projectCheckColumn;
00244 private System.Windows.Forms.DataGridViewTextBoxColumn projectNameColumn;
00245 private System.Windows.Forms.Panel panel3;
00246 }
00247 }