mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-03-29 20:33:22 -04:00
17 lines
353 B
C#
17 lines
353 B
C#
namespace HangoverWinForms
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
|
|
databaseTab.VisibleChanged += databaseTab_VisibleChanged;
|
|
cliTab.VisibleChanged += cliTab_VisibleChanged;
|
|
|
|
Load_databaseTab();
|
|
Load_cliTab();
|
|
}
|
|
}
|
|
}
|