Exemplo n.º 1
0
 public FormAdminItemItemInfo(FormAdminItemItem itemForm, string name, string id)
 {
     InitializeComponent();
     this.itemForm = itemForm;
     this.name     = name;
     this.id       = id;
 }
        private void label3_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            FormAdminItemItem frm = new FormAdminItemItem(mainform);

            frm.Owner = this;
            frm.Show();
            frm.Activate();
        }
 public FormAdminItemPlus(FormAdminItemItem itemForm)
 {
     InitializeComponent();
     this.itemForm = itemForm;
 }