在c# winform中怎样实现listbox的换行

在c# winform中怎样实现listbox的换行。我用"\r\n",没有起作用,望各位精英不吝赐教!谢谢!

aluckdog
浏览 2704回答 2
2回答

MMTTMM

你试试看看是不是你想要的,直接给listbox添加内容,它就自动换行了啊!using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace 窗口问题解决{public partial class Form1 : Form{public Form1(){InitializeComponent();listBox1.Items.Add("111");listBox1.Items.Add("222");listBox1.Items.Add("333");listBox1.Items.Add("444");listBox1.Items.Add("555");listBox1.Items.Add("666");}private void listBox1_SelectedIndexChanged(object sender, EventArgs e){}}}

米脂

实现不了,因为它每一行就是一个item,listbox其实就是一个可多选的下拉框。你可以使用Grid或者TextBox代替。
打开App,查看更多内容
随时随地看视频慕课网APP