마지막 문자 자르기


str.Substring(0, str.Length - 1);


텍스트박스 포커스 맨 뒤로 주기

TextBox.focus();
TextBox.Select(TextBox.Text.Length, 0);
Posted by motolies
,