Question
If you could please assist me with this C# assignment. Screenshots would be greatly appreciated! Create a Windows application using C# visual studio that functions
If you could please assist me with this C# assignment. Screenshots would be greatly appreciated!
Create a Windows application using C# visual studio that functions like a banking account register. The graphical user interface should initially allow the user to input the account name, number, and initial balance. Ensure that the full name is entered for the customer and that only numeric values are entered for number fields when the Create Account button is selected. Separate the business logic from the presentation layer by creating a Customer class. Include a deposit to and withdraw from methods in the Customer class to keep the balance updated. After an object of the Customer class is instantiated, provide textbox objects on your GUI for withdrawals and deposits. A second button should be available to update the account for withdrawal and deposit transactions showing the new balance.
I have a portion of the code written out:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms;
namespace WindowsFormsApp3 { public partial class Form1 : Form { public Form1() { InitializeComponent(); }
private void btnCreateAccount_Click(object sender, EventArgs e) {
}
private void btnExecute_Click(object sender, EventArgs e) {
}
private void txtBxAccountID_TextChanged(object sender, EventArgs e) {
}
private void txtBxAmount_TextChanged(object sender, EventArgs e) {
}
private void radiobtnDeposit_CheckedChanged(object sender, EventArgs e) {
}
private void radiobtnWithdraw_CheckedChanged(object sender, EventArgs e) {
}
private void radiobtnBalance_CheckedChanged(object sender, EventArgs e) {
} } }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started