hobiler kısmının kodları burada yok. şimdilik yapmadık

İsterseniz bir "Sil" butonu ekleyip button_click olayına aşağıdaki kodları yazarak listBox dan seçtiğiniz satırı silebilirsiniz. Deneyin ;)
listBoxEkle.Items.Remove(listBoxEkle.SelectedItem);
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication16
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string cinsiyet=" ";
if (checkBoxOnay.Checked == true)
{
string dogum = comboBoxDogum.Text;
string ders = listBoxDers.SelectedItem.ToString();
if (radioButtonErkek.Checked==true)
{ cinsiyet = "Erkek"; }
else if (radioButtonKiz.Checked==true)
{ cinsiyet = "Kız"; }
//string hobi = checkedListBoxHobi.CheckedItems.ToString();
listBoxEkle.Items.Add(textBoxAdi.Text + " " + textBoxSoyadi.Text + "-" + dogum + "-" + cinsiyet + "-" + ders);
}
else
{ MessageBox.Show("Onaylamadınız","DİKKAT",MessageBoxButtons.OK,MessageBoxIcon.Error); }
}
private void listBoxDers_SelectedIndexChanged(object sender, EventArgs e)
{ labelDers.Text = listBoxDers.SelectedItem.ToString(); }
// not hobiler kısmının kodları burada yok. şimdilik yapmadık
}
}
Hiç yorum yok:
Yorum Gönder