예제 #1
0
        private void OrganaizerForm_Load(object sender, EventArgs e)
        {
            AddEventForm addEventForm = new AddEventForm();

            comboBox1.Items.Add("Meeting");
            comboBox1.Items.Add("Memo");
            comboBox1.Items.Add("Task");
        }
예제 #2
0
        private void button3_Click(object sender, EventArgs e)
        {
            AddEventForm add = new AddEventForm(this.text);

            add.ShowDialog();
        }