本帖最后由 HM陈鑫 于 2013-4-25 21:18 编辑
string txt= Clipboard.GetText();
//记录下粘贴前的光标位置
int index = textBox1.SelectionStart;
// 选定文本的长度
int index1 = textBox1.SelectionLength;
//在删除光标到选中的位置的内容
textBox1.Text.Remove(index, index1);
//然后在当前光标输入点插入剪切板内容
textBox1.Text.Insert(index, txt);
为什么最后选中的没被删掉?
|