예제 #1
0
        private void btnAddProject_Click(object sender, EventArgs e)
        {
            Project.Active active;

            if (chkActive.Checked)
            {
                active = Project.Active.ACTIVE;
            }
            else
            {
                active = Project.Active.INACTIVE;
            }

            Project project = new Project(txtProjectName.Text, txtProjectCode.Text, txtProjectDescription.Text, active);

            DBStore store = new DBStore();
            DataSet ds    = store.AddNewProject(project);

            main.dataGridViewProjects.DataSource = null;
            main.dataGridViewProjects.Rows.Clear();
            main.dataGridViewProjects.Columns.Clear();

            main.dataGridViewProjects.Refresh();
        }