Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
読み取り専用モードのテキスト ボックスを使用して、このアプリケーションに Windows8 C# アプリケーションを実装しています。
カスタムエスケープシーケンスを使用して次の行を識別しています。
c#メトロアプリケーションでカスタムエスケープシーケンスを実装する方法は?
よろしくナラシンハ
これがあなたの質問に答えるかどうかはわかりませんが、次のようにすると、テキストボックスに改行を作成できます。
myTextBox.Text += Environment.NewLine;
または:
myTextBox.Text = "This is\nA Multi line\nText Box";