Files
flowframes/CodeLegacy/Forms/SplashForm.cs
2024-10-16 10:26:05 +02:00

30 lines
605 B
C#

using System.Windows.Forms;
namespace Flowframes.Forms
{
public partial class SplashForm : Form
{
public static SplashForm Inst;
public SplashForm(string status = "")
{
Inst = this;
InitializeComponent();
SetStatus(status);
}
private void SplashForm_Load(object sender, System.EventArgs e)
{
if (!Program.CmdMode)
{
Opacity = 1f;
}
}
public void SetStatus(string status)
{
statusLabel.Text = status;
}
}
}