vs2010 给textbox赋值时,如果值很长,默认是上一...
发布网友
发布时间:2022-04-21 21:57
我来回答
共1个回答
热心网友
时间:2024-12-05 23:26
赋值之后设置TextBox.SelectionStart到字符串末尾
不能接受每次赋值都手动调整一下的话那就重载TextBox,然后窗体中的控件就用自制的
public class MyTextBox : TextBox
{
public override string Text
{
get
{
return base.Text;
}
set
{
base.Text = value;
SelectionStart = value.Length;
}
}
}
热心网友
时间:2024-12-05 23:19
赋值之后设置TextBox.SelectionStart到字符串末尾
不能接受每次赋值都手动调整一下的话那就重载TextBox,然后窗体中的控件就用自制的
public class MyTextBox : TextBox
{
public override string Text
{
get
{
return base.Text;
}
set
{
base.Text = value;
SelectionStart = value.Length;
}
}
}