説明フィールドとして機能する複数行のテキストボックスがあります。このテキストボックスには、スペースとリターンを使用して大量の情報を追加できます。段落形式。このテキストを後で表示するLabel
と、書式設定がすべて失われ、テキストの壁に変わります。元のフォーマットを維持するためにできることはありますか?
var customerInfo = GetCustomerInfo(itemid);
if (customerInfo != null)
{
ItemID.Text = customerInfo.ItemID.ToString();
Description.Text = customerInfo.Description;
}
ページのソースは次のようになります
This is a test
this is a test
this is a test
1. test
2. test
3. test
4. tes
ラベル/リテラルは次のようになります
This is a test this is a test this is a test 1. test 2. test 3. test 4. tes