日期:2014-05-18 浏览次数:21136 次
private void richTextBox1_MouseUp(object sender, MouseEventArgs e)
{
if (richTextBox1.SelectedText != "")
{
//说明有选中的文本
}
else
{
//没有选中的文本
}
}
------解决方案--------------------