Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/07/11 16:49:22 (13 years ago)
Author:
ascheibe
Message:

#1233

  • added Sleep cmd
  • adapted gui for new cmds
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.4/SlaveView.cs

    r5320 r5451  
    9696    private void btnSoftPause_Click(object sender, System.EventArgs e) {
    9797      if (Content != null)
    98         Content.SoftPauseCore();
     98        Content.PauseAll();
    9999    }
    100100
    101101    private void btnHardPause_Click(object sender, System.EventArgs e) {
    102102      if (Content != null)
    103         Content.HardPauseCore();
     103        Content.StopAll();
    104104    }
    105105
     
    108108        Content.RestartCore();
    109109    }
     110
     111    private void btnSleep_Click(object sender, System.EventArgs e) {
     112      if (Content != null)
     113        Content.Sleep();
     114    }
    110115  }
    111116}
Note: See TracChangeset for help on using the changeset viewer.