in PutItemInBankAction.cs
private void DepositChanged(object sender, MetaPropArgs e)
{
Properties["Deposit"].Show = Deposit == DepositWithdrawAmount.Amount;
RefreshPropertyGrid();
}
needs to be
private void DepositChanged(object sender, MetaPropArgs e)
{
Properties["Amount"].Show = Deposit == DepositWithdrawAmount.Amount;
RefreshPropertyGrid();
}
private void DepositChanged(object sender, MetaPropArgs e)
{
Properties["Deposit"].Show = Deposit == DepositWithdrawAmount.Amount;
RefreshPropertyGrid();
}
needs to be
private void DepositChanged(object sender, MetaPropArgs e)
{
Properties["Amount"].Show = Deposit == DepositWithdrawAmount.Amount;
RefreshPropertyGrid();
}