티스토리 뷰
C# 텍스트박스에서 텍스트 중앙에 정렬하는 코드
textBox1.TextAlign = HorizontalAlignment.Center;
public void CreateMyPasswordTextBox() { // Create an instance of the TextBox control. TextBox textBox1 = new TextBox(); // Set the maximum length of text in the control to eight. textBox1.MaxLength = 8; // Assign the asterisk to be the password character. textBox1.PasswordChar = '*'; // Change all text entered to be lowercase. textBox1.CharacterCasing = CharacterCasing.Lower; // Align the text in the center of the TextBox control. textBox1.TextAlign = HorizontalAlignment.Center; }
'프로그래밍 > C#' 카테고리의 다른 글
C# string substring 문자열 출력 예제 (0) | 2018.10.28 |
---|---|
c# mysql 연결하기 (0) | 2018.10.27 |
C# 동적으로 생성한 라벨 폰트 설정하기 (0) | 2018.10.26 |
c# 동적생성 label textalign 바꾸기 (0) | 2018.10.26 |
C# 줄삭제 , 라인삭제 단축키 (0) | 2018.10.26 |
댓글