Ejemplo n.º 1
0
 public frmSchedule()
 {
     InitializeComponent();
     Load             += ApplicationLoad;
     KeyDown          += ApplicationKeyDown;
     this.enumAbaAtual = EnumAbaAtual.CONTATOS;
     lerArquivosListas();
 }
Ejemplo n.º 2
0
 private void btn_eventos_Click(object sender, EventArgs e)
 {
     this.lblTextBox3.Visible = true;
     this.textBox3.Visible    = true;
     enumAbaAtual             = EnumAbaAtual.EVENTOS;
     this.lblTextBox1.Text    = "Nome";
     this.lblTextBox2.Text    = "Data/Hora(yyyy-mm-dd HH:mm)";
     this.lblTextBox3.Text    = "Local";
     FormatEvent();
 }
Ejemplo n.º 3
0
        private void btn_lembretes_Click(object sender, EventArgs e)
        {
            enumAbaAtual             = EnumAbaAtual.LEMBRETES;
            this.lblTextBox3.Visible = false;
            this.textBox3.Visible    = false;
            this.lblTextBox1.Text    = "Texto";
            this.lblTextBox2.Text    = "Data/Hora(yyyy-mm-dd HH:mm)";

            FormatNote();
        }
Ejemplo n.º 4
0
        private void btn_contatos_Click(object sender, EventArgs e)
        {
            this.lblTextBox3.Visible = true;
            this.textBox3.Visible    = true;
            enumAbaAtual             = EnumAbaAtual.CONTATOS;
            this.lblTextBox1.Text    = "Nome";
            this.lblTextBox2.Text    = "Fone";
            this.lblTextBox3.Text    = "Endereço";

            FormatContacts();
        }