예제 #1
0
        public bool OpenEditorWindows(Window parent)
        {
            var dlg = new VideoEditorWindow(this.SeriesView.Source, this.Source)
            {
                Owner = parent
            };

            if (dlg.ShowDialog() == true)
            {
                this.RefreshProperties();
                return(true);
            }
            return(false);
        }
예제 #2
0
        public bool OpenEditorWindows(Window parent)
        {
            if (this.SeriesView.TestVersionObsolete(parent))
            {
                return(false);
            }

            var dlg = new VideoEditorWindow(this)
            {
                Owner = parent
            };

            if (dlg.ShowDialog() == true)
            {
                GroupFactory.RefreshGroup(this);
                this.RefreshProperties();
                return(true);
            }
            return(false);
        }