mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-03-25 02:13:27 -04:00
Make fields readonly Remove unnecessary casts Format document Remove unnecessary usings Sort usings Use file-level namespaces Order modifiers
16 lines
203 B
C#
16 lines
203 B
C#
namespace HangoverWinForms;
|
|
|
|
public partial class Form1
|
|
{
|
|
private void Load_cliTab()
|
|
{
|
|
|
|
}
|
|
|
|
private void cliTab_VisibleChanged(object sender, EventArgs e)
|
|
{
|
|
if (!cliTab.Visible)
|
|
return;
|
|
}
|
|
}
|