public AddIncome(Wallets form, int id_wallet, string name_wallet) { this.id_wallet = id_wallet; this.form = form; InitializeComponent(); this.label1.Text = name_wallet; }
public AddWallet(Wallets parentForm) { this.parentForm = parentForm; InitializeComponent(); }
private void Wallets_Click(object sender, EventArgs e) { this.Hide(); Forms.Wallets wallets = new Forms.Wallets(this); wallets.Show(); }