SplashForm.cs 287 B

1234567891011121314
  1. using System.Windows.Forms;
  2. namespace Optimizer
  3. {
  4. public partial class SplashForm : Form
  5. {
  6. public SplashForm()
  7. {
  8. InitializeComponent();
  9. this.DoubleBuffered = true;
  10. CheckForIllegalCrossThreadCalls = false;
  11. }
  12. }
  13. }