Save WindowState - Maximize, Minimize, Normal by user.

Load all at once code to support print.
Open Command from the Start (PROMS2010) Menu.
Enter key on treeview executes Open.
The Treeview was retaining focus after opening procedures or accessory documents. This was fixed.
Tab Bar initialized to the full width.
Items were not always being displayed after the tree was clicked.
The RO and Transition Info tabs are made invisible for accessory documents.
The Tags, RO and Transition tabs are made invisible when no doucment is selected.
Enter the DSO Framer window when it is created.
Enter the Accessory page editor or step editor when a tab is selected.
Remember the last selection in a step editor page when you return.
Activate one of the remaining tabs when a tab is closed.
Embed the pushpin images.
This commit is contained in:
Rich
2008-05-21 21:00:07 +00:00
parent 41eb961ceb
commit e42c3cea5c
17 changed files with 869 additions and 358 deletions

View File

@@ -279,6 +279,7 @@ namespace VEPROMS
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
this.tc = new Volian.Controls.Library.DisplayTabControl();
this.tmrTreeView = new System.Windows.Forms.Timer(this.components);
this.ribbonControl1.SuspendLayout();
this.ribbonPanel2.SuspendLayout();
this.ribbonPanel1.SuspendLayout();
@@ -1780,6 +1781,7 @@ namespace VEPROMS
this.btnOpen.Name = "btnOpen";
this.btnOpen.SubItemsExpandWidth = 24;
this.btnOpen.Text = "&Open...";
this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
//
// btnSave
//
@@ -2454,7 +2456,8 @@ namespace VEPROMS
this.tv.Size = new System.Drawing.Size(30, 374);
this.tv.TabIndex = 1;
this.tv.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.tv_BeforeExpand);
this.tv.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tv_AfterSelect);
this.tv.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tv_KeyPress);
this.tv.Click += new System.EventHandler(this.tv_Click);
//
// infoPanel
//
@@ -3189,6 +3192,11 @@ namespace VEPROMS
this.tc.LinkModifyTran += new Volian.Controls.Library.StepPanelLinkEvent(this.tc_LinkModifyTran);
this.tc.LinkModifyRO += new Volian.Controls.Library.StepPanelLinkEvent(this.tc_LinkModifyRO);
//
// tmrTreeView
//
this.tmrTreeView.Interval = 10;
this.tmrTreeView.Tick += new System.EventHandler(this.tmrTreeView_Tick);
//
// frmVEPROMS
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
@@ -3498,6 +3506,7 @@ namespace VEPROMS
private DevComponents.DotNetBar.PanelEx panelAnnoEditBtns;
private DevComponents.DotNetBar.ButtonX btnAnnoDetailsPushPin;
private DevComponents.DotNetBar.ButtonItem buttonItem1;
private System.Windows.Forms.Timer tmrTreeView;
}
}