コード例 #1
0
        public CInspectionSystemManager(int _ID, string _SystemName, bool _IsSimulationMode)
        {
            ID = _ID;
            IsSimulationMode = _IsSimulationMode;

            MapDataWnd  = new MapDataWindow();
            InspWnd     = new InspectionWindow();
            InspWndName = String.Format(" {0} Inspection Window", _SystemName);

            ThreadInspection          = new Thread(ThreadInspectionFunction);
            IsThreadInspectionExit    = false;
            IsThreadInspectionTrigger = false;
            ThreadInspection.Start();
        }
コード例 #2
0
        public CInspectionSystemManager(int _ID, string _SystemName, bool _IsSimulationMode)
        {
            InitializeLanguage();

            ID = _ID;
            IsSimulationMode = _IsSimulationMode;

            MapDataWnd  = new MapDataWindow();
            InspWnd     = new InspectionWindow();
            InspWndName = String.Format(" {0} {1}", _SystemName, InspectionSystemManager.LanguageResource.TitleName);

            ThreadInspection          = new Thread(ThreadInspectionFunction);
            IsThreadInspectionExit    = false;
            IsThreadInspectionTrigger = false;
            ThreadInspection.Start();
        }