32 lines
588 B
C#
32 lines
588 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.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace WindowsFormsApplication2
|
|
{
|
|
public partial class Main : Form
|
|
{
|
|
|
|
public Main()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void Main_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
Login l= new Login(this);
|
|
l.MdiParent = this;
|
|
|
|
l.Show();
|
|
|
|
}
|
|
}
|
|
}
|