private void OrganaizerForm_Load(object sender, EventArgs e) { AddEventForm addEventForm = new AddEventForm(); comboBox1.Items.Add("Meeting"); comboBox1.Items.Add("Memo"); comboBox1.Items.Add("Task"); }
private void button3_Click(object sender, EventArgs e) { AddEventForm add = new AddEventForm(this.text); add.ShowDialog(); }