gpt4 book ai didi

c# - winforms 将换行符(environmental.Newline)添加到代码中的文本框不起作用

转载 作者:行者123 更新时间:2023-11-30 20:18:01 24 4
gpt4 key购买 nike

这是我的代码,用于循环遍历数组到字符串并尝试将文本设置为文本框

foreach (var row in result.discount_section)
{
string name = row.name;
string value = row.amount;
s += name + " : " + value;
s += Environment.NewLine;
}
order_discount_section.Text = s;

s += Environment.NewLine 不工作,它仍然在一行中显示文本,有人知道问题是什么吗?

enter image description here

最佳答案

您必须将 TextBox 的多行属性设置为 true(默认值为 false)。

order_discount_section.Multiline = true;

(也可以在Designer中设置)

关于c# - winforms 将换行符(environmental.Newline)添加到代码中的文本框不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42691291/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com