summaryrefslogtreecommitdiff
path: root/Source/ModelViewer/Main.Designer.cs
diff options
context:
space:
mode:
authorGravatar MichalMoskal <unknown>2010-10-26 01:36:43 +0000
committerGravatar MichalMoskal <unknown>2010-10-26 01:36:43 +0000
commitdcd2453328f448dca66745701038e85563d72bb4 (patch)
tree00c909213cda3b35f43d3a3ae6c7c09f8433b26a /Source/ModelViewer/Main.Designer.cs
parent757d0aaeff6ba2782c056f4b7d231e021a2b0a79 (diff)
Introduce distinction between canonical element name and its aliases
Diffstat (limited to 'Source/ModelViewer/Main.Designer.cs')
-rw-r--r--Source/ModelViewer/Main.Designer.cs12
1 files changed, 10 insertions, 2 deletions
diff --git a/Source/ModelViewer/Main.Designer.cs b/Source/ModelViewer/Main.Designer.cs
index a8d7be4c..eae222aa 100644
--- a/Source/ModelViewer/Main.Designer.cs
+++ b/Source/ModelViewer/Main.Designer.cs
@@ -35,6 +35,7 @@
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.aliases = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
@@ -45,7 +46,8 @@
//
this.currentStateView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.name,
- this.value});
+ this.value,
+ this.aliases});
this.currentStateView.Dock = System.Windows.Forms.DockStyle.Fill;
this.currentStateView.FullRowSelect = true;
this.currentStateView.GridLines = true;
@@ -76,7 +78,7 @@
// value
//
this.value.Text = "Value";
- this.value.Width = 394;
+ this.value.Width = 99;
//
// splitContainer1
//
@@ -130,6 +132,11 @@
this.columnHeader2.Text = "Value";
this.columnHeader2.Width = 116;
//
+ // aliases
+ //
+ this.aliases.Text = "Aliases";
+ this.aliases.Width = 325;
+ //
// Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -156,6 +163,7 @@
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader3;
+ private System.Windows.Forms.ColumnHeader aliases;
}