c# richTextBox1问题 .
c#textbox问题.如何把richTextBox1的问题...现在richTextBox1..中有以下文字:我是第一行我是第二行我是第三行我是第四行现在想按butto...
c# textbox 问题 .
如何把 richTextBox1的问题...
现在 richTextBox1 ..中有以下文字:
我是第一行
我是第二行
我是第三行
我是第四行
现在想 按 button1 改为.
我是ABC..
我尝过..
private void button2_Click(object sender, EventArgs e)
{
richTextBox1.Lines[1]= 我是ABC..;
}
=====
好像不能...
另外有没有一些好 c#论坛介绍
打错....
private void button1_Click(object sender, EventArgs e)
{
richTextBox1.Lines[1]= 我是ABC..;
} 展开
如何把 richTextBox1的问题...
现在 richTextBox1 ..中有以下文字:
我是第一行
我是第二行
我是第三行
我是第四行
现在想 按 button1 改为.
我是ABC..
我尝过..
private void button2_Click(object sender, EventArgs e)
{
richTextBox1.Lines[1]= 我是ABC..;
}
=====
好像不能...
另外有没有一些好 c#论坛介绍
打错....
private void button1_Click(object sender, EventArgs e)
{
richTextBox1.Lines[1]= 我是ABC..;
} 展开
展开全部
richTextBox相当于文本框,不是列表啊。建议你用combobox(好像是这样写的)。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
private void button1_Click(object sender, EventArgs e)
{
string[] richtext;
string str=null;
richtext=richTextBox1.Lines;
richtext[1] = "我是ABC";
foreach (string s in richtext)
{
str += s;
str += "\n";
}
richTextBox1.Text = str;
}
直接用 richTextBox1.Lines[1].Remove(0);
richTextBox1.Lines[1].Insert(0, "我是ABC");
貌似不行
{
string[] richtext;
string str=null;
richtext=richTextBox1.Lines;
richtext[1] = "我是ABC";
foreach (string s in richtext)
{
str += s;
str += "\n";
}
richTextBox1.Text = str;
}
直接用 richTextBox1.Lines[1].Remove(0);
richTextBox1.Lines[1].Insert(0, "我是ABC");
貌似不行
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询