예제 #1
0
        public CreateForm()
        {
            InitializeComponent();
            this.business = new StudentManagement();

            this.btnSave.Click   += btnSave_Click;
            this.btnCancel.Click += btnCancel_Click;
        }
예제 #2
0
 public IndexForm()
 {
     InitializeComponent();
     this.business          = new StudentManagement();
     this.Load             += IndexForm_Load;
     this.btnCreate.Click  += btnCreate_Click;
     this.btnDelete.Click  += btnDelete_Click;
     this.grdStudent.Click += grdStudent_Click;
 }