SplashForm.cs 424 B

12345678910111213141516171819
  1. using System.Windows.Forms;
  2. namespace Optimizer
  3. {
  4. public sealed partial class SplashForm : Form
  5. {
  6. public SplashForm()
  7. {
  8. InitializeComponent();
  9. this.DoubleBuffered = true;
  10. CheckForIllegalCrossThreadCalls = false;
  11. LoadingStatus.Font = FontHelper.Poppins15;
  12. pictureBox2.BackColor = OptionsHelper.CurrentOptions.Theme;
  13. }
  14. }
  15. }