void ReleaseDesignerOutlets()
        {
            if (AccountNameLabel != null)
            {
                AccountNameLabel.Dispose();
                AccountNameLabel = null;
            }

            if (BackButton != null)
            {
                BackButton.Dispose();
                BackButton = null;
            }

            if (BalanceLabel != null)
            {
                BalanceLabel.Dispose();
                BalanceLabel = null;
            }

            if (DepositButton != null)
            {
                DepositButton.Dispose();
                DepositButton = null;
            }

            if (QuickDepositButton != null)
            {
                QuickDepositButton.Dispose();
                QuickDepositButton = null;
            }

            if (TransactionTableView != null)
            {
                TransactionTableView.Dispose();
                TransactionTableView = null;
            }

            if (WithdrawlButton != null)
            {
                WithdrawlButton.Dispose();
                WithdrawlButton = null;
            }
        }