示例#1
0
 public CreateStudentForm()
 {
     InitializeComponent();
     this.Business         = new StudentManagement();
     this.btnSave.Click   += btnSave_Click;
     this.btnCancel.Click += btnCancel_Click;
 }
示例#2
0
 public IndexStudentForm()
 {
     InitializeComponent();
     this.Business                = new StudentManagement();
     this.Load                   += IndexStudentForm_Load;
     this.btnCreate.Click        += btnCreate_Click;
     this.btnDelete.Click        += btnDelete_Click;
     this.grdStudent.DoubleClick += grdStudent_DoubleClick;
 }
 public UpdateStudentForm(int id)
 {
     InitializeComponent();
     this.Business         = new StudentManagement();
     this.Student_Id       = id;
     this.btnSave.Click   += btnSave_Click;
     this.btnCancel.Click += btnCancel_Click;
     this.Load            += UpdateStudentForm_Load;
 }