当我按下快捷方式时,我想在TextBox中转换所选文本,如图所示(示例是添加标签,但可能会有不同的更改):
我该怎么做?
答案 0 :(得分:0)
在文本框选择的事件中,您应该处理以下文章:
答案 1 :(得分:0)
您可以使用TextBox.KeyUp
事件
private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
if (e.Control && e.KeyValue == 49)
{
if (textBox1.SelectionLength > 0)
{
textBox1.SelectedText = String.Format("<h1>{0}</h1>", textBox1.SelectedText);
}
}
}