示例#1
0
        public void startUpApplication()
        {
            // load settings

            SettingsManager.Instance.load();

            KinectManager.Instance.setKinectSettings(SettingsManager.Instance.Settings.SettingsKinect, SettingsManager.Instance.Settings.SettingsTable.KinectDrawing_AssemblyArea);

            m_GuiHandle = new AdminView();
            m_GuiHandle.InitializeComponent();
            m_GuiHandle.Show();

            // open the frontend GUI
            motionEAPAdmin.App app = new motionEAPAdmin.App();

            StateManager.Instance.SetNewState(this, HciLab.motionEAP.InterfacesAndDataModel.AllEnums.State.IDLE);

            app.Run();
        }