コード例 #1
0
ファイル: AssignRegion.cs プロジェクト: gahadzikwa/GAPP
 public override bool Action(string action)
 {
     bool result = base.Action(action);
     if (result)
     {
         using (AssignRegionForm dlg = new AssignRegionForm(this, Core))
         {
             dlg.ShowDialog();
         }
     }
     return result;
 }
コード例 #2
0
ファイル: AssignRegion.cs プロジェクト: pheijmans-zz/GAPP
        public override bool Action(string action)
        {
            bool result = base.Action(action);

            if (result)
            {
                using (AssignRegionForm dlg = new AssignRegionForm(this, Core))
                {
                    dlg.ShowDialog();
                }
            }
            return(result);
        }