是否可以在ICSharpCode.TextEditor中配置垂直滚动,以便默认情况下不会显示垂直滚动条。只有当有人键入很多行(超出此控件的当前高度)时,才会自动显示垂直滚动条。如果是,怎么样?
答案 0 :(得分:1)
很容易自己添加功能:
1)转到命名空间ICSharpCode.TextEditor
并打开TextAreaControl
类。文件位置是:C:... \ ICSharpCode.TextEditor \ Project \ Src \ Gui \ TextAreaControl.cs
2)添加一个方法来设置水平或垂直滚动条的可见性:
public void ShowScrollBars(Orientation orientation,bool isVisible)
{
if (orientation == Orientation.Vertical)
{
vScrollBar.Visible = isVisible;
}
else
{
hScrollBar.Visible = isVisible;
}
}
3)在使用TextEditor的项目中,这就是你调用ShowScrollBars()
方法的方法:
editor.ActiveTextAreaControl.ShowScrollBars(Orientation.Vertical,false);
此代码可以根据文本行数显示垂直滚动条:
public TextEditorForm()
{
InitializeComponent();
AddNewTextEditor("New file");
SetSyntaxHighlighting("Mathematica");
editor.ActiveTextAreaControl.TextEditorProperties.IndentationSize = 0;
editor.ActiveTextAreaControl.ShowScrollBars(Orientation.Vertical,false);
editor.TextChanged += new EventHandler(editor_TextChanged);
}
void editor_TextChanged(object sender, EventArgs e)
{
bool isVisible = (editor.ActiveTextAreaControl.GetTotalNumberOfLines > editor.ActiveTextAreaControl.TextArea.TextView.VisibleLineCount);
editor.ActiveTextAreaControl.ShowScrollBars(Orientation.Vertical, isVisible);
}
在TextAreaControl中:
public int GetTotalNumberOfLines()
{
return this.Document.TotalNumberOfLines;
}
ps我正在使用这个Code Project ICSharpCode-TextEditor项目。