可以的.你将光标放在你要选取字的上面,双击就可以选取那个字.
这个问题之前我也发现了.是不怎么灵活.不过也不能说是C#的Bug吧.帮你顶

解决方案 »

  1.   

    //当选定文本后,当鼠标经过时,鼠标得变成arrow
    int positionToSearch = this.GetCharIndexFromPosition(new Point(e.X, e.Y));
                 
    int start=this.Text.IndexOf(this.SelectedText);
    int end=start+this.SelectedText.Length;
              
    if(positionToSearch >=start && positionToSearch<= end)
    { this.Cursor=Cursors.Arrow;
    }
    else
    {
    this.Cursor=Cursors.IBeam; }
    即使这样,鼠标还是不灵活