我知道我可以通过GetLineFromCharIndex得到#行,但是如何在该行上获得#列?
(我真的希望那条线上的光标位置,而不是’列’本身)
int line = textBox.GetLineFromCharIndex(textBox.SelectionStart); int column = textBox.SelectionStart - textBox.GetFirstCharIndexFromLine(line);