C#: WinForm系列——DataGridView单元格文本自动换行

39 篇文章 2 订阅

DataGridView是.NET开发中常用的控件,在开发中发现大文本数据显示时无法在界面上完全显示,以下是我的解决方法。

(1)首先要保证单元格的为Text类型

(2)在程序中加入以下的代码片段

String str1 = "mac:192.168.0.121";
String str2 = System.Environment.NewLine;
String str3 = "rssi:(-59)";
String mac = str1 +str2 +str3;

//设置自动换行  
this.dataGridView1.DefaultCellStyle.WrapMode = DataGridViewTriState.True;
//设置自动调整高度  
this.dataGridView1.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.AllCells;
this.dataGridView1.Rows[0].Cells[0].Value = mac;


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值