private void btnLivreManagement_Click(object sender, EventArgs e)
 {
     var frmCreateLivre = new CreateLivre(_frmMdi) {MdiParent = _frmMdi};
     frmCreateLivre.Show();
 }
예제 #2
0
 private void addBookToolStripMenuItem_Click(object sender, EventArgs e)
 {
     var frmCreateLivre = new CreateLivre(this);
     frmCreateLivre.MdiParent = this;
     frmCreateLivre.Show();
 }
 public AddBookFromAmazon(CreateLivre pCreateLivre)
     : this()
 {
     _createLivre = pCreateLivre;
 }
 public SearchRefLivre(CreateLivre createLivre)
     : this()
 {
     _createLivre = createLivre;
 }