1

我整晚都在努力解决这个 C# 问题。

我有一个覆盖 ToString(),它工作正常,我可以将我的数据放在 ListBox 中。但是由于数据很长,有一堆类,输出变得很长。我希望能够将我的 ListBox 输出分成多行。

这是类文件中的覆盖:

//ToString
public override string ToString()
{
    return  "Name " + firstName + lastName + ". Nationality " + nationality + ". Lives in " + address + " " + zipCode + " " + city + " " + country + "."//
        + " Height is " + height + " meters. Hair color is " + hairColor + " and eye color is " + eyeColor + ". Specialmarkings: "//
        + specialMark + ". Is associated with " + association + ". Codename is " + codeName + "Photo (filename): " + photo;

}

这是索引代码:

public partial class Index : System.Web.UI.Page
{
    static ArrayList personarraylist;

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            personarraylist = new ArrayList();
        }
    }

    protected void ButtonCreate_Click(object sender, EventArgs e)
    {
        //create new object
        Person p = new Person(TextBox1FirstName.Text, TextBox2LastName.Text, TextBox3Nation.Text, TextBox4Address.Text, //
            TextBox5City.Text, TextBox7Country.Text, //
            TextBox10HairColor.Text, TextBox11EyeColor.Text, TextBox12SpecialMark.Text, TextBox13Asso.Text, TextBox14Codename.Text, TextBox15Photo.Text, //
            Convert.ToDouble(TextBox9Height.Text), Convert.ToInt32(TextBox6ZipCode.Text), Convert.ToInt32(TextBox8Pass.Text));
        //add object to arraylist
        personarraylist.Add(p);
    }

    protected void ButtonShow_Click(object sender, EventArgs e)
    {
        //clear list box
        ListBox1.Items.Clear();

        //loop through Arraylist
        for (int i = 0; i < personarraylist.Count; i++)
        {
            ListBox1.Items.Add(personarraylist[i].ToString());
            ListBox1.Items.Add("");
            TextBox1.Text = "";
        }
    }
}

是否可以在 ListBox 中将输出拆分为多行?我试图在覆盖返回中注入一些 html 中断标签,但这些被剥离,是的,这是一个 web 应用程序。

在此先感谢您的时间。PS 我是 C# 的新手(学生),所以请善待;)

更新: 大家好,谢谢您的帮助,我已经尝试过 Environment.Newline 和其他解决方案,但是在 ListBox 中显示文本时这些似乎被忽略了。我可以在代码隐藏中看到断点,但在浏览器中,列表框仍将其全部保存在一行中。所以我决定改用 TextBox,它会自动中断文本以及我指出的位置。

//loop through Arraylist
        for (int i = 0; i < personarraylist.Count; i++)
        {
            TextBox1.Text += personarraylist[i].ToString();
        }

再次感谢您的帮助:-)

4

1 回答 1

1

You can use Environment.NewLine or simply "\n" to create multiple lines of text.

If that doesn't work, you can try using the DataList control:

<asp:DataList id="myDataList" runat="server">
    <ItemTemplate>
        Line 1
        <br />
        Line 2
    </ItemTemplate>
</asp:DataList>
于 2013-03-10T00:00:46.993 回答