public void DidExitFullScreen(Foundation.NSNotification notification)
 {
     isFullScreen = false;
     Console.WriteLine("Exited Full Screen");
     IsVisible = true;
     videoView.Show();
     Window.MakeKeyAndOrderFront(null);
     Window.Level = NSWindowLevel.Status;
 }
Пример #2
0
        public void SelectionDidChange(Foundation.NSNotification notification)
        {
            var row = TableView.SelectedRow;

            if (row < 0)
            {
                return;
            }
            TableView.DeselectAll(this);
            listView?.OnSelected((int)row);
        }
Пример #3
0
        public void SelectionDidChange(Foundation.NSNotification notification)
        {
            if (_sidebarOutlineView.SelectedRow < 0)
            {
                return;
            }
            var item = _sidebarOutlineView.ItemAtRow(_sidebarOutlineView.SelectedRow) as Element;

            item?.Tapped?.Invoke();
            SetCurrentView(item);
            if (item?.ShouldDeselect == true)
            {
                _sidebarOutlineView.DeselectAll(this);
            }
        }
 public override void SelectionDidChange(Foundation.NSNotification notification)
 {
     _controller.ChangeEncodingSelection();
 }
Пример #5
0
 public override void SelectionDidChange(Foundation.NSNotification notification)
 {
     m_main.EnabledUI();
 }
Пример #6
0
 public override void SelectionDidChange(Foundation.NSNotification notification)
 {
     _controller.ChangeSubtitleTableSelection();
 }
Пример #7
0
 public override void WillTerminate(Foundation.NSNotification notification)
 {
     FileLogger.StopAll();
 }
Пример #8
0
 public override void SelectionDidChange(Foundation.NSNotification notification)
 {
     SelectionChange();
 }
 public void TextDidChange(Foundation.NSNotification notification)
 {
     _ctrl.SubtitleTextChanged();
 }
 public override void WillTerminate(Foundation.NSNotification notification)
 {
     FireLifetimeChanged(MvxLifetimeEvent.Closing);
     base.WillTerminate(notification);
 }
 public override void DidResignActive(Foundation.NSNotification notification)
 {
     FireLifetimeChanged(MvxLifetimeEvent.Deactivated);
     base.DidResignActive(notification);
 }
 public override void WillBecomeActive(Foundation.NSNotification notification)
 {
     FireLifetimeChanged(MvxLifetimeEvent.ActivatedFromMemory);
     base.WillBecomeActive(notification);
 }
 public override void DidFinishLaunching(Foundation.NSNotification notification)
 {
     Mvx.Resolve <IMvxFormsViewPresenter>().FormsApplication.SendStart();
     FireLifetimeChanged(MvxLifetimeEvent.Launching);
     base.DidFinishLaunching(notification);
 }
 public void MediaPlayerStateChanged(Foundation.NSNotification notification)
 {
     Console.WriteLine("State changed to: {0}", mediaPlayer.GetState());
 }
 public void DidEnterFullScreen(Foundation.NSNotification notification)
 {
     isFullScreen    = true;
     videoView.Frame = MainView.Bounds;
     Console.WriteLine("Entered Full Screen");
 }
Пример #16
0
 public void TextDidChange(Foundation.NSNotification notification)
 {
     _ctrl.SearchTextChanged();
 }