コード例 #1
0
ファイル: EditServers.cs プロジェクト: Auer111/RegexFR
 public EditServers(Auer_Find_Replace afr)
 {
     AFR = afr;
     InitializeComponent();
     Show();
     Setup();
 }
コード例 #2
0
ファイル: EditPaths.cs プロジェクト: Auer111/RegexFR
 public EditPaths(Auer_Find_Replace afr)
 {
     AFR = afr;
     InitializeComponent();
     ResetForm();
     Show();
 }
コード例 #3
0
ファイル: EditActions.cs プロジェクト: Auer111/RegexFR
 public EditActions(Auer_Find_Replace afr)
 {
     AFR = afr;
     InitializeComponent();
     SetupControlValidation();
     ResetForm();
     Show();
 }
コード例 #4
0
        public void RunAction(Auer_Find_Replace afr)
        {
            AFR = afr;
            if (!enabled)
            {
                return;
            }
            Logger = new Logger(myActionData);
            if (myActionData.actionType == "Delete Scope")
            {
                DeleteScope(); return;
            }

            CORE();
        }