你看过 TextBox.GetRectFromCharacterIndex 方法吗?
http://msdn.microsoft.com/en-us/library/ms603094.aspx
如果我正确理解了您的问题,您应该能够在上面的示例中得到字母“O”的矩形。
我有一个类似的问题,我需要在给定文本框的装饰层上绘制“红色波浪线”来表示自定义拼写检查器解决方案(WPF 拼写检查器对我们来说太有限了)。
这是该实现的部分示例,以防万一。
//loop through the invalid words and draw the squiggilies
foreach (var word in rslt)
{
//find the index of the start of the invalid word
int idx1 = tbx.Text.ToLower().IndexOf(word.ToLower());
//find the index of the end of the invalid word
int idx2 = idx1 + (word.Length);
if (idx1 == -1)
continue;
//get a rect defining the location in coordinates of the invalid word.
var rec1 = tbx.GetRectFromCharacterIndex(idx1);
var rec2 = tbx.GetRectFromCharacterIndex(idx2);
//if the word is not visible or not fully visible, do not show the red line.
if (tbx.ActualWidth > 0)
{
if (rec1.X < 0 || rec2.X > tbx.ActualWidth)
continue;
}
if (rec1.Y < 0)
continue;
//actually draw the line under the word
SquigglyAdorner ado = new SquigglyAdorner(tbx, word, rec1.X, rec2.X, rec2.Bottom);
adornerLayer.Add(ado);
}
然后把那个矩形转换成屏幕坐标(或者你需要的任何坐标)