2022-08-13 19:38:14 +02:00

33 lines
798 B
C#

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 Graphics_bank_app
{
public partial class BankLogo : Form
{
public BankLogo()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'nulusson_bank_appDataSet.Account_Table' table. You can move, or remove it, as needed.
this.account_TableTableAdapter.Fill(this.nulusson_bank_appDataSet.Account_Table);
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
}
}