Beispiel #1
0
        public void Show()
        {
            UpdateEnabled();

            if (!Enabled)
            {
                return;
            }

            try
            {
                var component = new SeriesDetailsComponent(Context.SelectedStudy);
                ApplicationComponent.LaunchAsDialog(Context.DesktopWindow, component, SR.TitleSeriesDetails);
            }
            catch (Exception e)
            {
                ExceptionHandler.Report(e, this.Context.DesktopWindow);
            }
        }
Beispiel #2
0
 public SeriesDetailsToolContext(SeriesDetailsComponent component)
 {
     _component = component;
 }