-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.cs
62 lines (55 loc) · 1.62 KB
/
Form1.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Projeto_Jogo
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
int contagemClick = 0;
string[] numerosSelecionados = new string[6];
private void numero_clicado(object sender, EventArgs e)
{
Label clicklbl = sender as Label;
if (clicklbl != null)
{
if (contagemClick <= 6)
{
contagemClick++;
if (contagemClick <= 6)
{
clicklbl.BackColor = Color.White;
numerosSelecionados[contagemClick - 1] = clicklbl.Text;
//int teste = numerosSelecionados;
txtEsc.Text += numerosSelecionados[contagemClick - 1] + " ";
}
else return;
}
else return;
}
}
private void button1_Click(object sender, EventArgs e)
{
Sorteio sorteio = new Sorteio();
sorteio.Show();
this.Hide();
}
private void btnSelecionar_Click(object sender, EventArgs e)
{
txtEsc.Text += numerosSelecionados.ToString();
}
private void button2_Click(object sender, EventArgs e)
{
txtEsc.Text= string.Empty;
}
}
}