12345678910111213141516171819 |
- using System.Windows.Forms;
- namespace Optimizer
- {
- public sealed partial class SplashForm : Form
- {
- public SplashForm()
- {
- InitializeComponent();
- this.DoubleBuffered = true;
- CheckForIllegalCrossThreadCalls = false;
- LoadingStatus.Font = FontHelper.Poppins15;
- pictureBox2.BackColor = OptionsHelper.CurrentOptions.Theme;
- }
- }
- }
|