123456789101112131415161718192021222324252627282930313233 |
- 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 ImpulseVision
- {
- public partial class FormStart : Form
- {
- public FormStart()
- {
- InitializeComponent();
- }
- private void TimerForClose_Tick(object sender, EventArgs e)
- {
- TimerForClose.Stop();
- TimerForClose.Enabled = false;
- this.Hide();
- }
- private void FormStart_Load(object sender, EventArgs e)
- {
- TimerForClose.Start();
- }
- }
- }
|