mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-19 06:27:15 +00:00
45 lines
919 B
C#
45 lines
919 B
C#
namespace bnhtrade.gui
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
|
|
bool loadedTabIndex1 = false;
|
|
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
purchaseLineStatusBindingSource.DataSource = new Core.Logic.Purchase.PurchaseLineStatus().ReadAll();
|
|
}
|
|
|
|
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void purchaseLineStatusBindingSource_CurrentChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|