اضافه کردن عدد جلوی خطوط richTextBox
در خاصیت Lines کنترل چند خط اضافه کنید به این شکل :
کد:
private void Form1_Load(object sender, System.EventArgs e)
{
string[] arrStr = richTextBox1.Lines;
for (int i = 0; i < arrStr.Length; i++)
{
arrStr[i] = i + 1 + ". " + arrStr[i];
}
richTextBox1.Lines = arrStr;
}
انتقال آیتم های انتخاب شده checkedListBox به listbox
کد:
private void button1_Click(object sender, EventArgs e)
{
listBox2.Items.Clear();
if (checkedListBox1.CheckedItems.Count > 0)
{
for (int i = 0; i <= checkedListBox1.CheckedItems.Count - 1; i++)
{
listBox2.Items.Add(checkedListBox1.CheckedItems[i]);
}
}
}
private void Form1_Load(object sender, EventArgs e)
{
checkedListBox1.Items.Add("Ottima");
checkedListBox1.Items.Add("Reza");
checkedListBox1.Items.Add("Rezahck23");
checkedListBox1.Items.Add("4rm4n");
}
}
}