방법: 여러 줄 TextBox 컨트롤 만들기
업데이트: 2007년 11월
이 예제에서는 XAML(Extensible Application Markup Language)을 사용하여 여러 줄의 텍스트를 수용하도록 자동으로 확장되는 TextBox 컨트롤을 정의하는 방법을 보여 줍니다.
예제
TextWrapping 특성을 Wrap으로 설정하면 TextBox 컨트롤의 가장자리에 도달할 때 텍스트가 새 줄로 바뀌고, 필요한 경우 TextBox 컨트롤이 자동으로 늘어나 새 줄을 위한 공간이 확보됩니다.
AcceptsReturn 특성을 true로 설정하면 Return 키를 눌렀을 때 새 줄이 삽입되고 한 번 더 누르면 필요한 경우 TextBox 컨트롤이 자동으로 늘어나 새 줄을 위한 공간이 확보됩니다.
VerticalScrollBarVisibility 특성은 스크롤 막대를 TextBox에 추가하므로 둘러싼 프레임이나 창의 크기를 초과하여 TextBox가 늘어날 경우에도 TextBox의 내용을 스크롤할 수 있습니다.
<TextBox
Name="tbMultiLine"
TextWrapping="Wrap"
AcceptsReturn="True"
VerticalScrollBarVisibility="Visible"
>
This TextBox will allow the user to enter multiple lines of text. When the RETURN key is pressed,
or when typed text reaches the edge of the text box, a new line is automatically inserted.
</TextBox>