Ejemplo n.º 1
0
        public frmDetGenre(Genre G)
        {
            InitializeComponent();
            genreSelect = G;
            ctrlGen = new ctrlGenre();
            ctrlGen.charger();
            ctrlGen.Statut = false;
            this.PositionBtn(260);
            this.btnEnregistrer.Click += new EventHandler(btnEnregistrer_Click);
            this.btnCopier.Visible = false;

            annuler = true;
        }
Ejemplo n.º 2
0
 public frmDetGenre()
 {
     InitializeComponent();
     ctrlGen = new ctrlGenre();
     ctrlGen.charger();
     this.PositionBtn(260);
     this.txtNom.ReadOnly = false;
     this.rtxtCom.ReadOnly = false;
     this.btnEnregistrer.Click += new EventHandler(btnEnregistrer_Click);
     this.btnSupprimer.Click += new EventHandler(btnSupprimer_Click);
     this.btnCopier.Visible = false;
     this.btnActiverModif.Click += new EventHandler(btnActiverModif_Click);
     annuler = true;
 }