Exemplo n.º 1
0
        private void UpdateCumulativeDuration()
        {
            int total = CumulativeDuration();

            if (iterationCount_RadioButton.Checked)
            {
                total = total * RepeatCount;
            }
            cumulativeTime_Label.Text = TimeSpanFormat.ToTimeSpanString(total);
        }
Exemplo n.º 2
0
 private void ConvertTotalMinutesToHourMinute(object sender, ConvertEventArgs e)
 {
     e.Value = TimeSpanFormat.ToTimeSpanString((int)e.Value);
 }
Exemplo n.º 3
0
 private void IntervalBinding_Format(object sender, ConvertEventArgs e)
 {
     e.Value = TimeSpanFormat.ToTimeSpanString((int)e.Value);
 }