using System;
|
using System.Collections.Generic;
|
using System.Windows.Forms;
|
using System.IO;
|
using System.Text;
|
using System.Linq;
|
|
namespace DPumpHydr.WinFrmUI.Volute
|
{
|
public partial class MainViewPage
|
{
|
OccDesignCtrlDockPanel _occDesign3dCtrl;
|
OccDesignCtrlDockPanel _occDesign2dCtrl;
|
//private bool _isIsFirstOcc = true;
|
private void RefreshSectShape18(ViewModel.SectionBundleInfo bundle)
|
{
|
_occDesign3dCtrl.RefreshAllSectShape18(bundle);
|
|
_occDesign2dCtrl.RefreshAllSectShape18(bundle);
|
|
//if (_isIsFirstOcc == false)
|
//{
|
// GC.Collect();
|
// GC.WaitForPendingFinalizers();
|
//}
|
|
//_isIsFirstOcc = false;
|
}
|
|
|
}
|
}
|