コード例 #1
0
ファイル: EditorItem.cs プロジェクト: schifflee/bcephal2
 /// <summary>
 /// Construit une nouvelle instance de EditorItem.
 /// </summary>
 public EditorItem(SubjectType subjectType)
 {
     this.SubjectType  = subjectType;
     this.IsReadOnly   = false;
     this.CanRename    = true;
     ListChangeHandler = new Domain.PersistentListChangeHandler <T>();
     initializeForm();
 }
コード例 #2
0
 /// <summary>
 /// Construit une nouvelle instance de Editor
 /// </summary>
 public Editor(SubjectType subjectType, String functionality)
 {
     this.SubjectType  = subjectType;
     ListChangeHandler = new Domain.PersistentListChangeHandler <T>();
     InitializeNewPage(functionality);
 }