This commit is contained in:
Bobbie Hodgetts
2024-05-09 16:42:32 +01:00
parent 270eebca9a
commit b790a7b642
10 changed files with 427 additions and 0 deletions

33
bnhtrade.gui/Form1.cs Normal file
View File

@@ -0,0 +1,33 @@
namespace bnhtrade.gui
{
public partial class Form1 : Form
{
bool loadedTabIndex1 = false;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void tabPage3_Click(object sender, EventArgs e)
{
}
private void tabControl1_SelectedIndexChanged(object sender, EventArgs e)
{
int index = (sender as TabControl).SelectedIndex;
if (index == 1)
{
}
}
}
}