28 lines
699 B
C#
28 lines
699 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AyaNova
|
|
{//http://stackoverflow.com/questions/392864/c-splash-screen-problem#393870
|
|
public partial class Splish : Form
|
|
{
|
|
public Splish()
|
|
{
|
|
InitializeComponent();
|
|
this.pictureBox1.Image = Resource1.Splash;
|
|
this.pictureBox2.Image = Resource1.prog;
|
|
//this.pictureBox2.Image = Resource1._168;
|
|
//this.SendToBack();
|
|
this.ShowInTaskbar = false;
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|