コード例 #1
0
ファイル: PollingController.cs プロジェクト: ROMaster2/munia
 public bool Activate()
 {
     if (!_controller.Activate())
     {
         return(false);
     }
     StartPollingThread();
     return(true);
 }
コード例 #2
0
ファイル: ConfigManager.cs プロジェクト: valandil/munia
 public static void SetActiveController(IController value)
 {
     // deactive old controller
     _activeController?.Deactivate();
     _activeController = value;
     if (_activeController != null)
     {
         _activeController.Activate();
         if (Delay != TimeSpan.Zero)
         {
             _bufferedActiveController = new BufferedController(value, Delay);
         }
     }
 }
コード例 #3
0
        public void Activate()
        {
            if (!IsActive)
            {
                logfile.WriteLine(this.GetType().ToString() + " activating");

                foreach (object controllerobject in controllers)
                {
                    IController controller = controllerobject as IController;
                    controller.Activate();
                }

                IsActive = true;
            }
        }
コード例 #4
0
ファイル: FormMVC.cs プロジェクト: TeVeVe/Ict4Events-B
        /// <summary>
        ///     Reinitializes the controller and view. Call this when the UI is out of sync.
        /// </summary>
        public void ResetController()
        {
            if (_activeController == null)
            {
                return;
            }
            panelContent.AssignView(_activeController.View);

            if (!AllowUserResize)
            {
                // Resize form to content.
                _activeController.View.Dock     = DockStyle.None;
                this.InvokeSafe(c => ClientSize = new Size(_activeController.View.Width,
                                                           _activeController.View.Height + (menuStripNavigation.Visible ? menuStripNavigation.Height : 0)));
            }
            else
            {
                _activeController.View.Dock = DockStyle.Fill;
            }

            _activeController.Activate();
        }
コード例 #5
0
ファイル: MappedController.cs プロジェクト: ROMaster2/munia
 public bool Activate()
 {
     return(_controller.Activate());
 }
コード例 #6
0
ファイル: BufferedController.cs プロジェクト: valandil/munia
 public bool Activate()
 {
     return(_real.Activate());
 }