-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemporizador.cs
88 lines (82 loc) · 2.32 KB
/
temporizador.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Avisador
{
public partial class temporizador : UserControl
{
public event EventHandler Quitar;
bool esElSiguiente;
static int contador = 0;
int id;
public temporizador()
{
InitializeComponent();
Tiempo = "0:0";
id = contador++;
lblTiempo.Click += new EventHandler(ClicPonerEvent);
}
private void ClicPonerEvent(object sender, EventArgs e)
{
OnClick(null);
}
public temporizador(NumericUpDown horas, NumericUpDown minutos):this()
{
PonTiempo(horas, minutos);
}
public string Tiempo
{
get { return lblTiempo.Text; }
private set { lblTiempo.Text = value; }
}
public bool EsElSiguiente
{
get { return esElSiguiente; }
set { esElSiguiente = value;
if (esElSiguiente)
BackColor = Color.Green;
else
BackColor = SystemColors.Control;
}
}
public void PonTiempo(NumericUpDown horas, NumericUpDown minutos)
{
Tiempo = horas.Value + ":" + minutos.Value;
}
public int Horas
{
get { return Convert.ToInt32(Tiempo.Split(':')[0]); }
}
public int Minutos
{
get { return Convert.ToInt32(Tiempo.Split(':')[1]); }
}
public TimeSpan DTiempo
{
get { return new TimeSpan(Horas, Minutos, 0); }
}
private void btnQuitar_Click(object sender, EventArgs e)
{
if (Quitar != null)
Quitar(this, e);
}
public override string ToString()
{
return "id:"+id;
}
public override bool Equals(object obj)
{
temporizador temp = obj as temporizador;
if (temp != null)
return temp.id == id;
else
return false;
}
}
}