我想将文本框中输入的文本复制到richtextbox。当我在文本框中输入时,它将自动出现在richtextbox中。我做了类似下面的事情:
private void textBox1_TextChanged(object sender, EventArgs e)
{
richTextBox1.Text = textBox1.Text;
richTextBox1.Font = new Font("Comic Sans MS", 14);
}
但是当我们使用richtextbox时,文本将始终显示在左上角的第一行。假设我希望文本框的文本出现在richtextbox的第3行。我们怎么做?
答案 0 :(得分:0)
private void textBox1_TextChanged(object sender, EventArgs e)
{
richTextBox1.Text = "\r\n\r\n"+" "+ textBox1.Text; // Appended Spaces
richTextBox1.Font = new Font("Comic Sans MS", 14);
}
这个技巧会锻炼!
中心对齐
richTextBox1.SelectAll();
richTextBox1.SelectionAlignment = HorizontalAlignment.Center;
答案 1 :(得分:0)
您可以尝试使用第3行行
进行书写private void textBox1_TextChanged(object sender, EventArgs e)
{
richTextBox1.Text = "\r\n" + "\r\n" +textBox1.Text;
richTextBox1.Font = new Font("Comic Sans MS", 14);
}
用于对齐
richTextBox1.SelectAll();
richTextBox1.SelectionAlignment = HorizontalAlignment.Center;
从左侧添加空间
richTextBox1.Text += new String(' ', n);
n是您要添加的空格数。