C# da Kolay bir listbox a ekleme programı
private void button1_Click(object sender, EventArgs e)
{
int not;
string ad;
ad = textBox1.Text;
not = Convert.ToInt32(textBox2.Text);
if (not>=50)
{
listBox1.Items.Add(ad+" " + not + " " + " "+"geçti" );
}
else
{
listBox1.Items.Add(ad+" "+not + " " + " "+ "kaldı");
}
}
c# |
0 yorum :
Yorum Gönder