Arkadaşlar bencheckbox1'deki yazıyı listBox'a geçiren kodlar lazım acaba yardım edebilirmisiniz?
Arkadaşlar bencheckbox1'deki yazıyı listBox'a geçiren kodlar lazım acaba yardım edebilirmisiniz?
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ı.
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.