我有使用Rich Textbox的简单聊天应用程序来显示消息,使用Textbox来编写消息。我喜欢和Facebook聊天一样的行为,它专注于文本框,但能够使用鼠标滚轮滚动我悬停的那个。举个例子:我在文本框中写了一些内容,但与此同时,我想通过使用鼠标滚轮向上滚动Rich Textbox而不会忽略文本框。 Facebook聊天有这种确切的行为。
我提出的半伪代码:
private void richTextBox_MouseOver(object sender, EventArgs e)
{
MouseWheelScroll -> richTextBox scroll, msgTextBox don't scroll
}