// Class Schedule Label
        private void labelClassSchedule_Click(object sender, EventArgs e)
        {
            if (currentSelectedLabel == this.labelClassSchedule)
            {
                return;
            }
            this.labelClassSchedule.Focus();
            restoreAndAddAnimation(this.labelClassSchedule);
            currentSelectedLabel = this.labelClassSchedule;

            // Student Profile
            TutorStudentProfileForm.hideAllComponents();
            TutorStudentProfileForm.resetStudentProfileInformation();
            TutorViewStudentProfileForm.hideAllComponents();
            TutorViewStudentProfileForm.resetStudentProfileInformation();


            TutorClassScheduleForm.showAllComponents();
            TutorClassScheduleForm.updateTutorInformation();
        }