public LocationChooseDataSource(LocationChooserView parent, bool newFileUpload)
 {
     NodeStack      = new Stack <TreeNode>();
     _parent        = parent;
     _newFileUpload = newFileUpload;
 }
Beispiel #2
0
        public void MoveFile(string pathOfFileToMove, IListNode nodeView)
        {
            var view = LocationChooserView.Create(pathOfFileToMove, false, nodeView);

            View.Add(view);
        }
			public LocationChooseDataSource(LocationChooserView parent, bool newFileUpload) {
                NodeStack = new Stack<TreeNode>();
                _parent = parent;
				_newFileUpload = newFileUpload;
            }
Beispiel #4
0
        private void UploadNewFile(string path)
        {
            var view = LocationChooserView.Create(path, true, null);

            View.Add(view);
        }