00001 namespace Mcs.Epm.MicrosoftProject.mpFx.WinForms
00002 {
00003 partial class PropertyEditorForm
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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
00032 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
00033 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PropertyEditorForm));
00034 this.bottomPanel = new System.Windows.Forms.Panel();
00035 this.bottomLeftPanel = new System.Windows.Forms.Panel();
00036 this.cancelButton = new System.Windows.Forms.Button();
00037 this.okButton = new System.Windows.Forms.Button();
00038 this.propertiesGridView = new System.Windows.Forms.DataGridView();
00039 this.propertyNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00040 this.propertyDescriptionColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00041 this.propertyValueColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00042 this.bottomPanel.SuspendLayout();
00043 this.bottomLeftPanel.SuspendLayout();
00044 ((System.ComponentModel.ISupportInitialize)(this.propertiesGridView)).BeginInit();
00045 this.SuspendLayout();
00046
00047
00048
00049 this.bottomPanel.Controls.Add(this.bottomLeftPanel);
00050 this.bottomPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
00051 this.bottomPanel.Location = new System.Drawing.Point(0, 511);
00052 this.bottomPanel.Name = "bottomPanel";
00053 this.bottomPanel.Size = new System.Drawing.Size(858, 51);
00054 this.bottomPanel.TabIndex = 0;
00055
00056
00057
00058 this.bottomLeftPanel.Controls.Add(this.cancelButton);
00059 this.bottomLeftPanel.Controls.Add(this.okButton);
00060 this.bottomLeftPanel.Dock = System.Windows.Forms.DockStyle.Right;
00061 this.bottomLeftPanel.Location = new System.Drawing.Point(658, 0);
00062 this.bottomLeftPanel.Name = "bottomLeftPanel";
00063 this.bottomLeftPanel.Size = new System.Drawing.Size(200, 51);
00064 this.bottomLeftPanel.TabIndex = 0;
00065
00066
00067
00068 this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
00069 this.cancelButton.Location = new System.Drawing.Point(32, 16);
00070 this.cancelButton.Name = "cancelButton";
00071 this.cancelButton.Size = new System.Drawing.Size(75, 23);
00072 this.cancelButton.TabIndex = 3;
00073 this.cancelButton.Text = "&Cancel";
00074 this.cancelButton.UseVisualStyleBackColor = true;
00075
00076
00077
00078 this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
00079 this.okButton.Location = new System.Drawing.Point(113, 16);
00080 this.okButton.Name = "okButton";
00081 this.okButton.Size = new System.Drawing.Size(75, 23);
00082 this.okButton.TabIndex = 2;
00083 this.okButton.Text = "&OK";
00084 this.okButton.UseVisualStyleBackColor = true;
00085 this.okButton.Click += new System.EventHandler(this.okButton_Click);
00086
00087
00088
00089 this.propertiesGridView.AllowUserToAddRows = false;
00090 this.propertiesGridView.AllowUserToDeleteRows = false;
00091 dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
00092 dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
00093 dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
00094 dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
00095 dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
00096 dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
00097 dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
00098 this.propertiesGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
00099 this.propertiesGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
00100 this.propertiesGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
00101 this.propertyNameColumn,
00102 this.propertyDescriptionColumn,
00103 this.propertyValueColumn});
00104 this.propertiesGridView.Dock = System.Windows.Forms.DockStyle.Fill;
00105 this.propertiesGridView.Location = new System.Drawing.Point(0, 0);
00106 this.propertiesGridView.Name = "propertiesGridView";
00107 this.propertiesGridView.RowHeadersVisible = false;
00108 dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
00109 dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
00110 this.propertiesGridView.RowsDefaultCellStyle = dataGridViewCellStyle2;
00111 this.propertiesGridView.Size = new System.Drawing.Size(858, 511);
00112 this.propertiesGridView.TabIndex = 1;
00113 this.propertiesGridView.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.propertiesGridView_CellBeginEdit);
00114
00115
00116
00117 this.propertyNameColumn.HeaderText = "Property Name";
00118 this.propertyNameColumn.Name = "propertyNameColumn";
00119 this.propertyNameColumn.ReadOnly = true;
00120 this.propertyNameColumn.Width = 120;
00121
00122
00123
00124 this.propertyDescriptionColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
00125 this.propertyDescriptionColumn.HeaderText = "Property Description";
00126 this.propertyDescriptionColumn.Name = "propertyDescriptionColumn";
00127 this.propertyDescriptionColumn.ReadOnly = true;
00128 this.propertyDescriptionColumn.Width = 127;
00129
00130
00131
00132 this.propertyValueColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
00133 this.propertyValueColumn.HeaderText = "Property Value";
00134 this.propertyValueColumn.Name = "propertyValueColumn";
00135
00136
00137
00138 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
00139 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
00140 this.ClientSize = new System.Drawing.Size(858, 562);
00141 this.Controls.Add(this.propertiesGridView);
00142 this.Controls.Add(this.bottomPanel);
00143 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
00144 this.Name = "PropertyEditorForm";
00145 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
00146 this.Text = "Property Editor";
00147 this.bottomPanel.ResumeLayout(false);
00148 this.bottomLeftPanel.ResumeLayout(false);
00149 ((System.ComponentModel.ISupportInitialize)(this.propertiesGridView)).EndInit();
00150 this.ResumeLayout(false);
00151
00152 }
00153
00154 #endregion
00155
00156 private System.Windows.Forms.Panel bottomPanel;
00157 private System.Windows.Forms.DataGridView propertiesGridView;
00158 private System.Windows.Forms.Panel bottomLeftPanel;
00159 private System.Windows.Forms.Button cancelButton;
00160 private System.Windows.Forms.Button okButton;
00161 private System.Windows.Forms.DataGridViewTextBoxColumn propertyNameColumn;
00162 private System.Windows.Forms.DataGridViewTextBoxColumn propertyDescriptionColumn;
00163 private System.Windows.Forms.DataGridViewTextBoxColumn propertyValueColumn;
00164 }
00165 }