如何在TextBox的指定位置插入文字
我用的是C#asp.net页面上有一个asp:button和一个TextBox我想要的效果是点击button后,在TextBox中插入一段文本,位置是在点击按钮前鼠标在文...
我用的是C# asp.net
页面上有一个asp:button和一个TextBox
我想要的效果是
点击button后,在TextBox中插入一段文本,位置是在点击按钮前鼠标在文本框中的位置
我在button的onclick事件中加入textbox+=后他只会在textbox的最末端加入内容
如果要实现以上的内容要怎么写,谢谢赐教
好的回答我会加分 展开
页面上有一个asp:button和一个TextBox
我想要的效果是
点击button后,在TextBox中插入一段文本,位置是在点击按钮前鼠标在文本框中的位置
我在button的onclick事件中加入textbox+=后他只会在textbox的最末端加入内容
如果要实现以上的内容要怎么写,谢谢赐教
好的回答我会加分 展开
展开全部
public partial class Form1 : Form
{
StringBuilder sb;
string txt1;
string txt2;
public Form1()
{
InitializeComponent();
this.textBox1.Text = "0123456789";
this.textBox1.MouseDown += new MouseEventHandler(textBox1_MouseDown);
this.button1.Click+=new EventHandler(button1_Click);
}
void textBox1_MouseDown(object sender, MouseEventArgs e)
{
string txt = this.textBox1.Text;
int index = this.textBox1.SelectionStart;
txt1 = txt.Substring(0,index);
txt2 = txt.Substring(index,txt.Length-1);
}
private void button1_Click(object sender, EventArgs e)
{
sb = new StringBuilder();
string txt3 = "yourtext";
sb.Append(txt1);
sb.Append(txt3);
sb.Append(txt2);
this.textBox1.Text = sb.ToString();
}
}
...............cs 的..........
{
StringBuilder sb;
string txt1;
string txt2;
public Form1()
{
InitializeComponent();
this.textBox1.Text = "0123456789";
this.textBox1.MouseDown += new MouseEventHandler(textBox1_MouseDown);
this.button1.Click+=new EventHandler(button1_Click);
}
void textBox1_MouseDown(object sender, MouseEventArgs e)
{
string txt = this.textBox1.Text;
int index = this.textBox1.SelectionStart;
txt1 = txt.Substring(0,index);
txt2 = txt.Substring(index,txt.Length-1);
}
private void button1_Click(object sender, EventArgs e)
{
sb = new StringBuilder();
string txt3 = "yourtext";
sb.Append(txt1);
sb.Append(txt3);
sb.Append(txt2);
this.textBox1.Text = sb.ToString();
}
}
...............cs 的..........
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
要用到onfocus方法,思路:
鼠标选中文本框中的第某某个字符后,计算出当前的Length,再点击button时拿到那个Length,在这个Length后输入你想要的内容。
思路大概就这样,不过我也不知道怎么得到鼠标选中的当前的Length
鼠标选中文本框中的第某某个字符后,计算出当前的Length,再点击button时拿到那个Length,在这个Length后输入你想要的内容。
思路大概就这样,不过我也不知道怎么得到鼠标选中的当前的Length
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询