Ejemplo n.º 1
0
        public FileSelectionPresenter(IFileSelectionView fileOpenView, IFileSelectionModel fileOpenModel)
        {
            this.fileOpenView  = fileOpenView;
            this.fileOpenModel = fileOpenModel;

            fileOpenModel.DisplayDialogRequest += OnDisplayDialogRequest;
        }
Ejemplo n.º 2
0
        public TextInputLoader(ITextInputModel textInputModel, IFileSelectionModel fileOpenModel)
        {
            this.textInputModel = textInputModel;
            this.fileOpenModel  = fileOpenModel;

            //fileOpenModel.FileWasLoaded += OnFileLoaded;
        }
Ejemplo n.º 3
0
 public TextInputModel(IFileSelectionModel openFileModel)
 {
     text = string.Empty;
     this.openFileModel = openFileModel;
 }
Ejemplo n.º 4
0
 public FileSelectionDisplay(IFileSelectionModel fileSelectionModel)
 {
     this.fileSelectionModel = fileSelectionModel;
 }