tangxu
2024-11-04 1ff6a1bba95bdd2f962de84cb57e7b738114968b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 void RefreshSectShape18(ViewModel.SectionBundleInfo bundle)
        {
            _occDesign3dCtrl.RefreshAllSectShape18(bundle);
 
            _occDesign2dCtrl.RefreshAllSectShape18(bundle);
        }
 
 
    }
}