Exemple #1
0
        void IOpenMenuOperations.OpenWithCustom(string exePath, string args)
        {
            List <string> selectedPaths = PendingChangesSelection.
                                          GetSelectedPathsWithoutMeta(mPendingChangesTreeView);

            OpenOperation.OpenWith(exePath, selectedPaths);
        }
Exemple #2
0
        void IOpenMenuOperations.OpenWith()
        {
            List <string> selectedPaths = PendingChangesSelection.
                                          GetSelectedPathsWithoutMeta(mPendingChangesTreeView);

            OpenOperation.OpenWith(
                FileSystemOperation.GetExePath(),
                selectedPaths);
        }
Exemple #3
0
        void PendingChangesViewMenu.IMetaMenuOperations.OpenMetaWith()
        {
            List <string> selectedPaths = PendingChangesSelection
                                          .GetSelectedMetaPaths(mPendingChangesTreeView);

            OpenOperation.OpenWith(
                FileSystemOperation.GetExePath(),
                selectedPaths);
        }