mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-24 12:19:27 +01:00
30 lines
605 B
C#
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;
|
|
}
|
|
}
|
|
}
|