private void txtAmount_TextChanged(object sender, EventArgs e)
{
TextBox box = sender as TextBox;
if (box != null)
{
box.SelectionStart = box.TextLength;
box.Focus(); //少了这句可能看不到效果
}
}private void txtAmount_TextChanged(object sender, EventArgs e)
{
TextBox box = sender as TextBox;
if (box != null)
{
box.SelectionStart = box.TextLength;
box.Focus(); //少了这句可能看不到效果
}
}
评论(0)
暂无评论。