SplashForm.cs 412 B

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