00001 namespace Mcs.Epm.MicrosoftProject.mpFx.WinForms
00002 {
00003 partial class ItemSelectionDialog
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(ItemSelectionDialog));
00032 this.bottomPanel = new System.Windows.Forms.Panel();
00033 this.bottomLeftPanel = new System.Windows.Forms.Panel();
00034 this.cancelButton = new System.Windows.Forms.Button();
00035 this.okButton = new System.Windows.Forms.Button();
00036 this.dataGridView = new System.Windows.Forms.DataGridView();
00037 this.selectedColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
00038 this.descriptionColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00039 this.guidColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00040 this.bottomPanel.SuspendLayout();
00041 this.bottomLeftPanel.SuspendLayout();
00042 ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
00043 this.SuspendLayout();
00044
00045
00046
00047 this.bottomPanel.Controls.Add(this.bottomLeftPanel);
00048 this.bottomPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
00049 this.bottomPanel.Location = new System.Drawing.Point(0, 351);
00050 this.bottomPanel.Name = "bottomPanel";
00051 this.bottomPanel.Size = new System.Drawing.Size(468, 49);
00052 this.bottomPanel.TabIndex = 0;
00053
00054
00055
00056 this.bottomLeftPanel.Controls.Add(this.cancelButton);
00057 this.bottomLeftPanel.Controls.Add(this.okButton);
00058 this.bottomLeftPanel.Dock = System.Windows.Forms.DockStyle.Right;
00059 this.bottomLeftPanel.Location = new System.Drawing.Point(268, 0);
00060 this.bottomLeftPanel.Name = "bottomLeftPanel";
00061 this.bottomLeftPanel.Size = new System.Drawing.Size(200, 49);
00062 this.bottomLeftPanel.TabIndex = 0;
00063
00064
00065
00066 this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
00067 this.cancelButton.Location = new System.Drawing.Point(32, 14);
00068 this.cancelButton.Name = "cancelButton";
00069 this.cancelButton.Size = new System.Drawing.Size(75, 23);
00070 this.cancelButton.TabIndex = 1;
00071 this.cancelButton.Text = "&Cancel";
00072 this.cancelButton.UseVisualStyleBackColor = true;
00073
00074
00075
00076 this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
00077 this.okButton.Location = new System.Drawing.Point(113, 14);
00078 this.okButton.Name = "okButton";
00079 this.okButton.Size = new System.Drawing.Size(75, 23);
00080 this.okButton.TabIndex = 0;
00081 this.okButton.Text = "&OK";
00082 this.okButton.UseVisualStyleBackColor = true;
00083
00084
00085
00086 this.dataGridView.AllowUserToAddRows = false;
00087 this.dataGridView.AllowUserToDeleteRows = false;
00088 this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
00089 this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
00090 this.selectedColumn,
00091 this.descriptionColumn,
00092 this.guidColumn});
00093 this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
00094 this.dataGridView.Location = new System.Drawing.Point(0, 0);
00095 this.dataGridView.Name = "dataGridView";
00096 this.dataGridView.RowHeadersVisible = false;
00097 this.dataGridView.Size = new System.Drawing.Size(468, 351);
00098 this.dataGridView.TabIndex = 1;
00099 this.dataGridView.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellEndEdit);
00100
00101
00102
00103 this.selectedColumn.FalseValue = "false";
00104 this.selectedColumn.HeaderText = "";
00105 this.selectedColumn.Name = "selectedColumn";
00106 this.selectedColumn.TrueValue = "true";
00107 this.selectedColumn.Width = 30;
00108
00109
00110
00111 this.descriptionColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
00112 this.descriptionColumn.HeaderText = "Item Name";
00113 this.descriptionColumn.Name = "descriptionColumn";
00114 this.descriptionColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
00115 this.descriptionColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
00116
00117
00118
00119 this.guidColumn.HeaderText = "Guid";
00120 this.guidColumn.Name = "guidColumn";
00121 this.guidColumn.Visible = false;
00122
00123
00124
00125 this.AcceptButton = this.okButton;
00126 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
00127 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
00128 this.CancelButton = this.cancelButton;
00129 this.ClientSize = new System.Drawing.Size(468, 400);
00130 this.Controls.Add(this.dataGridView);
00131 this.Controls.Add(this.bottomPanel);
00132 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
00133 this.Name = "ItemSelectionDialog";
00134 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
00135 this.Text = "Select Item";
00136 this.bottomPanel.ResumeLayout(false);
00137 this.bottomLeftPanel.ResumeLayout(false);
00138 ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
00139 this.ResumeLayout(false);
00140
00141 }
00142
00143 #endregion
00144
00145 private System.Windows.Forms.Panel bottomPanel;
00146 private System.Windows.Forms.Panel bottomLeftPanel;
00147 private System.Windows.Forms.Button cancelButton;
00148 private System.Windows.Forms.Button okButton;
00149 private System.Windows.Forms.DataGridView dataGridView;
00150 private System.Windows.Forms.DataGridViewCheckBoxColumn selectedColumn;
00151 private System.Windows.Forms.DataGridViewTextBoxColumn descriptionColumn;
00152 private System.Windows.Forms.DataGridViewTextBoxColumn guidColumn;
00153 }
00154 }