Ejemplo n.º 1
0
        private void newtask_Click(object sender, EventArgs e)
        {
            NewEvent n = new NewEvent(new Event(DateTime.Today));

            n.Show();
        }
Ejemplo n.º 2
0
        private void New_Click(object sender, EventArgs e)
        {
            NewEvent n = new NewEvent(new Event(monthCalendar1.SelectionRange.Start));

            n.Show();
        }
Ejemplo n.º 3
0
        private void Edit_Click(object sender, EventArgs e)
        {
            NewEvent n = new NewEvent((Event)Items.SelectedItem);

            n.Show();
        }