可能重複:
How do I scroll a RichTextBox to the bottom?我如何使richTextBox滾動文本而不是酒吧?
我在構造函數中所做的:
richTextBox1.ScrollBars = RichTextBoxScrollBars.Both;
但是,當從頂部開始越來越下降的文字我需要拖動條向下看文字。相反,我怎樣才能使文本將推下酒吧,所以如果我想看到上/舊文本,我將需要拖動酒吧?所以我總是會從下面看到下一個/新的文本。
private void init()
{
cancel = false;
currentCrawlingSite = new List<string>();
sitesToCrawl = new List<string>();
richTextBox1.Clear();
}
Alvin你給的鏈接不起作用。至少對於我來說。 – user1741587
你每次將內容添加到它時都會調用它嗎? –