我在RichTextBox
的面板中有一个WinForm
。我想隐藏RichTextBox
的垂直滚动条,并将其滚动与容器面板的垂直滚动条同步;每当文本溢出textbox
时,面板的滚动条就会显示出来,每当我滚动面板的滚动条时,textbox
都应该滚动。
怎么做到这一点?
答案 0 :(得分:1)
正如我在评论中所说,我们必须处理win32消息并使用一些黑客。我已经在winforms
中使用了所有关于win32消息和控制黑客/自定义的知识来为您制作此演示。它不完整,当然不会像RichTextBox
的标准滚动条那样完美。缺点是如果你一直按住箭头键,滚动条拇指不会向右移动,但是如果你按箭头键,滚动条拇指会将插入符移动到标准滚动条的视图中。您可以自己尝试使用代码来查看代码:
public class Form1 : Form {
[DllImport("user32")]
private static extern int SendMessage(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam);
public Form1(){
InitializeComponent();
//initialize some properties for your richTextBox1 (this should be added as a child of your panel1)
richTextBox1.ScrollBars = RichTextBoxScrollBars.Horizontal;
richTextBox1.BorderStyle = BorderStyle.None;
richTextBox1.Dock = DockStyle.Top;
richTextBox1.MinimumSize = new Size(panel1.Width, panel1.Height - 2);
//initialize some properties for your panel1
panel1.AutoScroll = true;
panel1.BorderStyle = BorderStyle.FixedSingle;
//If the size of panel1 is changed, we have to update the MinimumSize of richTextBox1.
panel1.SizeChanged += (s,e) => {
richTextBox1.MinimumSize = new Size(panel1.Width, panel1.Height - 2);
};
new NativeRichTextBox() { Parent = panel1 }.AssignHandle(richTextBox1.Handle);
hidden.Parent = panel1;
}
//hidden control of panel1 is used to scroll the thumb when the KeyUp of richTextBox1 is raised.
Control hidden = new Control();
//this is used to hook into the message loop of the richTextBox1
public class NativeRichTextBox : NativeWindow
{
public Panel Parent;
protected override void WndProc(ref Message m)
{
if (m.Msg == 0x20a)//WM_MOUSEWHEEL = 0x20a
{
if (Parent != null)
{
SendMessage(Parent.Handle, m.Msg, m.WParam, m.LParam);
return;
}
}
base.WndProc(ref m);
}
}
//ContentsResized event handler of your richTextBox1
private void richTextBox1_ContentsResized(object sender, ContentsResizedEventArgs e)
{
richTextBox1.Height = e.NewRectangle.Height + 5;
}
//KeyUp event handler of your richTextBox1
private void richTextBox1_KeyUp(object sender, KeyEventArgs e)
{
Point p = richTextBox1.GetPositionFromCharIndex(richTextBox1.SelectionStart);
hidden.Top = panel1.PointToClient(richTextBox1.PointToScreen(p)).Y;
hidden.Height = (int) richTextBox1.SelectionFont.Height;
panel1.ScrollControlIntoView(hidden);
}
}
注意:您必须使用代码或设计师为ContentsResized
注册事件处理程序KeyUp
和richTextBox1
。
答案 1 :(得分:0)
为了隐藏你可以做的滚动条
richTextBox1.ScrollBars = RichTextBoxScrollBars.None;
但问题在于它使文本变形。所以你还需要
richTextBox1.WordWrap = false;
一旦你做完了,剩下的就不那么容易了。
在面板滚动事件中注册并更改富文本框上的滚动。问题是你不能只改变richTextBox
的滚动偏移,所以你可以使用Select
方法跳转到你需要的地方。您可以使用该行的长度来了解scrollBar
的大小。