Example #1
0
 public frmInfoProject(Project project, urcProject urcProject, frmListProjects frmList)
 {
     InitializeComponent();
     Project     = project;
     _urcProject = urcProject;
     _frmList    = frmList;
     txtSearchEmployee.TextChanged += TxtSearchEmployee_TextChanged;
     ProjectController.LoadListTask(Project, this);
 }
Example #2
0
 public frmInfoProject(frmListProjects frmListProjects)
 {
     InitializeComponent();
     _frmList                       = frmListProjects;
     IsNew                          = true;
     _urcProject                    = null;
     cbStatus.SelectedIndex         = 0;
     txtSearchEmployee.TextChanged += TxtSearchEmployee_TextChanged;
 }
Example #3
0
        private void btnProject_Click(object sender, EventArgs e)
        {
            if (this.pnlRimProject.BackColor == Color.Blue)
            {
                return;
            }
            ResetMenu();
            this.pnlRimProject.BackColor = Color.Blue;
            frmListProjects listProjects = new frmListProjects();

            listProjects.Text = "Các dự án";
            SetView(listProjects);
        }
Example #4
0
 public urcProject(Project project, frmListProjects frmListProjects)
 {
     InitializeComponent();
     Project  = project;
     _frmList = frmListProjects;
 }