列表框所选文本与列表框文本+自定义文本(richtextbox)

时间:2015-04-09 02:48:03

标签: c# .net listbox

我正在申请此网站:http://incil.info 我想要做的是当选择列表框文本时,它将使用列表框+自定义文本中的选定文本在richTextBox上显示它。

我有点被困在这里..

现在,这是我的代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Kutsal_Kitap
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
        }

        private void btnAra_Click(object sender, EventArgs e)
        {

        }



        private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            richTextBox1.Text = listBox1.SelectedItem.ToString();


        }
    }
    }

此代码仅显示从列表框到richtextbox的所选文本。 我如何在下面添加自定义文字?

1 个答案:

答案 0 :(得分:0)

按条件添加自定义文字

private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
    {
var str =listBox1.SelectedItem.ToString();
if(str=="aaa")
{
        richTextBox1.Text = str + "custom text 1";
}
else if(str=="bbb")
{
        richTextBox1.Text = str + "custom text 2";
}
...


    }