-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tela_Principal.cs
40 lines (33 loc) · 969 Bytes
/
Tela_Principal.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
using HorarioSemanal.formularios;
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 HorarioSemanal
{
public partial class Tela_Principal : Form
{
Variaveis VarsGlobal = new Variaveis();
public Tela_Principal()
{
InitializeComponent();
}
private void VerHorario_Click(object sender, EventArgs e)
{
Tela_To_Horario tela_to_horario = new Tela_To_Horario(this);
tela_to_horario.Show();
this.Visible = false;
}
private void AlterarHorario_Click(object sender, EventArgs e)
{
Tela_To_Horario tela_to_horario = new Tela_To_Horario(this, true);
tela_to_horario.Show();
this.Visible = false;
}
}
}