mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-19 07:50:47 +01:00
17 lines
345 B
C#
17 lines
345 B
C#
namespace Hangover
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
|
|
databaseTab.VisibleChanged += databaseTab_VisibleChanged;
|
|
cliTab.VisibleChanged += cliTab_VisibleChanged;
|
|
|
|
Load_databaseTab();
|
|
Load_cliTab();
|
|
}
|
|
}
|
|
}
|