public void SetGo(NSView view)
        {
            FilmScreeningControl infoButton;

            ScreeningsView.DisposeSubViews(view);
            infoButton = new FilmScreeningControl(view.Frame, Screening);
            infoButton.ReDraw();
            infoButton.ScreeningInfoAsked += (sender, e) => GoToScreening(Screening);
            infoButton.Selected            = ScreeningIsSelected(Screening);
            view.AddSubview(infoButton);
        }
 void IFilmOutlinable.SetGo(NSView view)
 {
     ScreeningsView.DisposeSubViews(view);
 }