コード例 #1
0
ファイル: CreateForm.cs プロジェクト: hotanminhtam/Management
 public CreateForm()
 {
     InitializeComponent();
     this.Business         = new StudentManagement();
     this.btnCancel.Click += btnCancel_Click;
     this.btnSave.Click   += btnSave_Click;
 }
コード例 #2
0
 public UpdateForm(int id)
 {
     InitializeComponent();
     this.StudentID        = id;
     this.Business         = new StudentManagement();
     this.btnCancel.Click += btnCancel_Click;
     this.btnSave.Click   += btnSave_Click;
     this.Load            += UpdateForm_Load;
 }
コード例 #3
0
ファイル: IndexForm.cs プロジェクト: hotanminhtam/Management
 public IndexForm()
 {
     InitializeComponent();
     this.Business         = new StudentManagement();
     this.Load            += IndexForm_Load;
     this.btnCreate.Click += btnCreate_Click;
     this.btnDelete.Click += btnDelete_Click;
     this.DoubleClick     += IndexForm_DoubleClick;
 }