Kullanıcı adı ve şifre bilgileri ile gizli bilgiyi gösteren program Csharp C#

[code lang=”csharp”]
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 WindowsFormsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text == "admin" && textBox2.Text == "1234")
{
label1.Visible = true;
}
else MessageBox.Show("Kadı veya şifre hatalı");
}
}
}
[/code]


