突出显示textbox-winform c#中的错误行

时间:2018-05-28 10:05:08

标签: c# winforms

我需要在文本框中突出显示解析JSON时出错的行:

{
    "datalist":
    {
        "name":"abc",
        "collegename":"xyz",
        "degree":"123"
    }
}

我试过了:

txtBox1.SelectionStart = txtBox1.GetFirstCharIndexFromLine(exceptionObject.Lineposition);
txtBox1.SelectionLength = 10;
txtBox1.setFocus();

但发生错误时,文本行不会突出显示。

0 个答案:

没有答案