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 deneme1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text==""|| textBox2.Text=="")
{
MessageBox.Show("LÜTFEN BOŞLUKLARI DOLDURUNUZ.");
}
else
{
if (textBox1.Text == "memory" && textBox2.Text == "hacker")
{
Form1 frm = new Form1();
frm.ShowDialog();
this.Close();
}
else
{
MessageBox.Show("Lütfen kullanıcı adı şifre doğru giriniz");
}
}
}
}
}