我正在使用以下代码隐藏我的scintillaNET控件中的行:
if (cShowProcess.SelectedItem != null)
{
for (int i = 0; i < scintilla1.Lines.Count; i++)
{
if (!scintilla1.Lines[i].Text.Contains(cShowProcess.SelectedItem.ToString()))
{
scintilla1.Lines.Hide(scintilla1.Lines[i].Number,scintilla1.Lines[i].Number);
//scintilla1.Lines[i].IsVisible = false;
continue;
}
}
}
代码工作正常,实际上隐藏了行,但它留下了空格 在所有隐藏线上隐藏线(即CR),有没有办法完全隐藏隐藏线?