Ejemplo n.º 1
0
        private void MoveForward(object obj)
        {
            history.MoveForward();
            var current = history.Current;

            FilePath = current.DirectoryPath;
            OpenDirectory();
        }
        private void OnMoveForward(object parameter)
        {
            _history.MoveForward();

            Name     = _history.Current.DirectoryName;
            FilePath = _history.Current.DirectoryPath;

            OpenDirectory();
        }
Ejemplo n.º 3
0
        private void OnMoveForward(object obj)
        {
            _history.MoveForward();

            var current = _history.Current;

            FilePath = current.DirectoryPath;
            Name     = current.DirectoryPathName;

            OpenDirectory();
        }