예제 #1
0
        /// <summary>
        /// Constructor.
        /// </summary>
        /// <param name="theDataGridSopClasses">The DataGrid that is managed by this class.</param>
        /// <param name="theSessionTreeViewManager">The associated session tree view manager.</param>
        public SopClassesManager(ProjectForm2 theProjectForm2, System.Windows.Forms.DataGrid theDataGridSopClasses, System.Windows.Forms.ComboBox theComboBoxAeTitle, System.Windows.Forms.ListBox theListBoxDefinitionFileDirectories, System.Windows.Forms.RichTextBox theRichTextBoxInfo, UserControlSessionTree theUserControlSessionTree, System.Windows.Forms.Button theButtonRemoveDirectory)
        {
            _ProjectForm2       = theProjectForm2;
            _DataGridSopClasses = theDataGridSopClasses;
            _ComboBoxAeTitle    = theComboBoxAeTitle;
            _ListBoxDefinitionFileDirectories = theListBoxDefinitionFileDirectories;
            _RichTextBoxInfo                = theRichTextBoxInfo;
            _ButtonRemoveDirectory          = theButtonRemoveDirectory;
            _UserControlSessionTree         = theUserControlSessionTree;
            _theDefinitionFileTextColumn    = new DataGridTextBoxColumn();
            _DefinitionFilesInfoForDataGrid = new ArrayList();
            _DefaultAeTitleVersion          = new AeTitleVersion("DICOM", "3.0");

            Initialize();
        }
예제 #2
0
 public StopExecution(ProjectForm2 theProjectForm)
 {
     _ProjectForm = theProjectForm;
 }