Exemplo n.º 1
0
        // AWB processing stopped/started:
        internal void AWBProcessingStart(AsyncApiEdit editor)
        {
            foreach (Label lbl in StatLabels)
            {
                if (string.IsNullOrEmpty(lbl.Text))
                {
                    lbl.Text = "0";
                }
            }

            TimerStats1.Visible = true;
            TimerStats1.Init(editor, ETALabel, PluginStats);

            PluginManager.StatusText.Text = "Started";
        }
Exemplo n.º 2
0
 internal void AWBProcessingAborted()
 {
     TimerStats1.StopStats();
 }
Exemplo n.º 3
0
 private void ResetTimerButton_Click(object sender, EventArgs e)
 {
     TimerStats1.Reset();
 }