Aap-Ka-Doctor/WindowsFormsApplication2/WindowsFormsApplication2/Main.cs
Muhammad Anas Rashid 06a9894ee6 HCI
2016-04-19 23:20:38 +05:00

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();
}
}
}