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 ControlPic
{
public partial class Logo : Form
{
public Logo()
{
InitializeComponent();
}
private void timer_inicio_Tick(object sender, EventArgs e)
{
timer_inicio.Enabled = true;
Form f = new Form1();
f.ShowDialog();
timer_inicio.Enabled = false;
}
}
}