Yardım edin acillll !

M€TiN
21-02-2012, 19:54   |  #1  
OP Taze Üye
Teşekkür Sayısı: 0
2 mesaj
Kayıt Tarihi:Kayıt: Şub 2012

Arkadaşlar bencheckbox1'deki yazıyı listBox'a geçiren kodlar lazım acaba yardım edebilirmisiniz?

Kapalı Hesap (153535)
21-02-2012, 20:10   |  #2  
Kapalı Hesap
Teşekkür Sayısı: 27
2,297 mesaj
Kayıt Tarihi:Kayıt: Eki 2009

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 Pass
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void btnShow_Click(object sender, EventArgs e)
        {
            listBox1.Items.Add(checkBox1.Text);
            listBox1.Items.Add(checkBox2.Text);

        }
    }
}
checkbox kontrolünün metin özelliğini listbox'a atmak istiyorsanız kodlar yukarıdaki gibi olmalı.

Kapalı Hesap (153535)
21-02-2012, 20:14   |  #3  
Kapalı Hesap
Teşekkür Sayısı: 27
2,297 mesaj
Kayıt Tarihi:Kayıt: Eki 2009

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 Pass
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void btnShow_Click(object sender, EventArgs e)
        {
            if (checkBox1.Checked)
            {
                listBox1.Items.Add(checkBox1.Text);
            }
            if (checkBox2.Checked)
            {
                listBox1.Items.Add(checkBox2.Text);
            }

        }
    }
}
Bu şekilde sanırım sizin istediğiniz ve en doğrusu.