Copy all fields from Library Document when converting a Library Document to a Stand-alone Document
Added code to update the Procedure Panel when a Word Section is added. Created a method to find a ProcedureDisplayTabItem for a specific item Added code to Reset the Tab when a Section's Number is changed. Added code to Reset a Procedures Parts when a Panel is Reset Added an event for a Node being added.
This commit is contained in:
@@ -302,6 +302,11 @@ namespace Volian.Controls.Library
|
||||
{
|
||||
if (NodeSelect != null) NodeSelect(sender, args);
|
||||
}
|
||||
public event vlnTreeViewEvent NodeNew;
|
||||
private void OnNodeNew(object sender, vlnTreeEventArgs args)
|
||||
{
|
||||
if (NodeNew != null) NodeNew(sender, args);
|
||||
}
|
||||
public event vlnTreeViewEvent NodeSelectionChange;
|
||||
private void OnNodeSelectionChange(object sender, vlnTreeEventArgs args)
|
||||
{
|
||||
@@ -935,8 +940,7 @@ namespace Volian.Controls.Library
|
||||
if (tn != null)
|
||||
{
|
||||
SelectedNode = tn;
|
||||
OnNodeSelect(this, new vlnTreeEventArgs(SelectedNode));
|
||||
|
||||
OnNodeNew(this, new vlnTreeEventArgs(SelectedNode));
|
||||
Refresh();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user