我正在尝试单独读取文本框中的每一行并检查它是否包含某个字符串。这将在文本框的 textchanged 事件中用于检查某个字符串,如果找到,它将执行相应的代码。
我不能让它正常工作。这是我的代码。
Dim txt As FastColoredTextBox = TryCast(page.Controls(0), FastColoredTextBox)
For Each line As Line In txt.Lines
If CBool(InStr(line.ToString(), "<vb>")) Then
txt.Language = Language.VB
End If