Initial commit
This commit is contained in:
37
Mip/frmLogo.cs
Normal file
37
Mip/frmLogo.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Mip
|
||||
{
|
||||
public partial class frmLogo : Form
|
||||
{
|
||||
public frmLogo()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void frmLogo_Shown(object sender, EventArgs e)
|
||||
{
|
||||
Image im = Properties.Resources.kompozitumv2maleanazov;
|
||||
pictureBox1.Image = im;
|
||||
Timer timerLogo = new Timer();
|
||||
timerLogo.Enabled = true;
|
||||
timerLogo.Interval = 2000;
|
||||
timerLogo.Tick += new System.EventHandler(timerLogo_Tick);
|
||||
|
||||
}
|
||||
|
||||
private void timerLogo_Tick(object sender, EventArgs e)
|
||||
{
|
||||
this.Close();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user