This commit is contained in:
@@ -572,9 +572,9 @@ namespace VEPROMS
|
||||
private void tv_BeforeExpand(object sender, TreeViewCancelEventArgs e)
|
||||
{
|
||||
VETreeNode tn = ((VETreeNode)e.Node);
|
||||
tn.LoadingChildernDone += new VETreeNodeEvent(tn_LoadingChildernDone);
|
||||
tn.LoadingChildernMax += new VETreeNodeEvent(tn_LoadingChildernMax);
|
||||
tn.LoadingChildernValue += new VETreeNodeEvent(tn_LoadingChildernValue);
|
||||
tn.LoadingChildrenDone += new VETreeNodeEvent(tn_LoadingChildrenDone);
|
||||
tn.LoadingChildrenMax += new VETreeNodeEvent(tn_LoadingChildrenMax);
|
||||
tn.LoadingChildrenValue += new VETreeNodeEvent(tn_LoadingChildrenValue);
|
||||
tn.LoadingChildrenSQL += new VETreeNodeEvent(tn_LoadingChildrenSQL);
|
||||
tn.LoadChildren(true);
|
||||
}
|
||||
@@ -736,7 +736,7 @@ namespace VEPROMS
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="args"></param>
|
||||
void tn_LoadingChildernValue(object sender, VETreeNodeEventArgs args)
|
||||
void tn_LoadingChildrenValue(object sender, VETreeNodeEventArgs args)
|
||||
{
|
||||
ProgBarValue = args.Value;
|
||||
}
|
||||
@@ -746,7 +746,7 @@ namespace VEPROMS
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="args"></param>
|
||||
void tn_LoadingChildernMax(object sender, VETreeNodeEventArgs args)
|
||||
void tn_LoadingChildrenMax(object sender, VETreeNodeEventArgs args)
|
||||
{
|
||||
ProgBarMax = args.Value;
|
||||
ProgBarText = "Loading...";
|
||||
@@ -757,7 +757,7 @@ namespace VEPROMS
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="args"></param>
|
||||
void tn_LoadingChildernDone(object sender, VETreeNodeEventArgs args)
|
||||
void tn_LoadingChildrenDone(object sender, VETreeNodeEventArgs args)
|
||||
{
|
||||
if (VlnSettings.DebugMode)
|
||||
ProgBarText = args.Info + " Seconds";
|
||||
|
Reference in New Issue
Block a user