JUST DO IT
C# TextBox 줄바꿈 개행 본문
\r\n
1. 개행 == 줄바꿈 == new line
(1) LF (Line Feed) : Focusing을 한 칸 아래로 이동한다.
(2) CR (Carriage Return) : Focusing을 맨 왼쪽으로 이동한다.
2. 운영체제별 개행문자
(1) MacOS : 0x0D = CR (Carriage Return) = \r
(2) UNIX : 0x0A = LF (Line Feed) = \n
(3) Windows : 0x0D0A = CRLF (CR:Carriage Return, LF:Line Feed) = \r\n
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WinFomsTest
{
public partial class TestForm : Form
{
public TestForm()
{
InitializeComponent();
}
private void btn_print_Click(object sender, EventArgs e)
{
textBox1.Text += "개행문자";
textBox1.Text += "개행문자\r";
textBox1.Text += "개행문자\n";
textBox1.Text += "개행문자\r\n";
textBox1.Text += "개행문자";
textBox1.Text += "개행문자\r";
textBox1.Text += "개행문자\n";
textBox1.Text += "개행문자\r\n";
}
}
}
'LANGUAGE > C#' 카테고리의 다른 글
[C#] Visual Studio에서 FFmpeg 설치하기 (0) | 2024.05.02 |
---|---|
[C#] textBox 패스워드 보이기/숨기기 (1) | 2024.03.20 |
[C#] Visual Studio 줄맞춤 단축키 (0) | 2023.04.26 |