public void DidExitFullScreen(Foundation.NSNotification notification) { isFullScreen = false; Console.WriteLine("Exited Full Screen"); IsVisible = true; videoView.Show(); Window.MakeKeyAndOrderFront(null); Window.Level = NSWindowLevel.Status; }
public void SelectionDidChange(Foundation.NSNotification notification) { var row = TableView.SelectedRow; if (row < 0) { return; } TableView.DeselectAll(this); listView?.OnSelected((int)row); }
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(); }
public override void SelectionDidChange(Foundation.NSNotification notification) { m_main.EnabledUI(); }
public override void SelectionDidChange(Foundation.NSNotification notification) { _controller.ChangeSubtitleTableSelection(); }
public override void WillTerminate(Foundation.NSNotification notification) { FileLogger.StopAll(); }
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"); }
public void TextDidChange(Foundation.NSNotification notification) { _ctrl.SearchTextChanged(); }