예제 #1
0
        private void applyChangesButton_Click(object sender, EventArgs e)
        {
            //Launches the "Edit Project" screen.
            DsUtil.formID = 1;
            projectScreenInputForm createEdit = new projectScreenInputForm();

            createEdit.Show();
        }
예제 #2
0
파일: Form7.cs 프로젝트: mnazari95/c-sharp
        private void createProjectButton_Click(object sender, EventArgs e)
        {
            //Launches the "Create Project" screen. dsUtil.formID is used to determine whether this screen should launch as
            //"Create Project" or "Edit Project".
            DsUtil.formID = 0;
            projectScreenInputForm projectScreenInput = new projectScreenInputForm();

            projectScreenInput.Show();
        }