예제 #1
0
        public ExecutionDetailsViewModel(ApplicationModel model)
        {
            Model = model;
            ConfigureReferenceParameterCommand = new DelegateCommand <GeneratorParameter>(ShowParameterReferenceConfigurationWindow);

            ShowPreviewCommand = new DelegateCommand <ExecutionNode>(ei =>
            {
                Object dt;    // = ExecutionNode.CreatePreview(ei);
                throw new NotImplementedException("Preview not implemented");
                ModalWindows.ShowPreviewWindow win = new ModalWindows.ShowPreviewWindow(dt);
                win.Show();
                throw new NotImplementedException();
            });
        }
예제 #2
0
 public ExecutionDetailsViewModel(SQLDataProducer.Model.ApplicationModel model, ExecutionNode execItem)
 {
     Model = model;
 }