本文介绍了不以树状视图显示所有数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在Windows C#应用程序中使用树视图.我在树视图的子节点上添加了一些数据,我的数据太长了,因此树视图无法显示所有数据.


我的数据是:"DATA \ 254 0xFE *设备类型0xE1 0xB3 *最小前置码0x05 * Hart协议0x07 *设备修订级别0x01 *软件修订级别0x01 *硬件修订级别0x08 *标志0x03 *设备ID 0x00 0x00 0x01 *最小前置码0x05 *设备变量的最大数量0x0A * Conf.更改计数器0x00 0x00 *扩展字段设备状态0x00 *制造商标识代码0x60 0x55 *私有标签分发者代码0x60 0x55 *设备配置文件0x01 *"


树视图仅显示以下内容:
FirstNode = {文本="254 0xFE *设备类型0xE1 0xB3 *最小前同步码0x05 * Hart协议0x07 *设备修订级别0x01 *软件修订级别0x01 *硬件修订级别0x08 *标志0x03 *设备ID 0x00 0x00 0x01 *最小前同步码0x05 *设备V的最大数量...

或者如何像我想在两行中显示此数据一样在树数据中换行.
您能解决这个问题吗?

I am using tree view in my window c# application.I am adding some data at tree view''s child node my data is so long so tree view not display all data.


My data is: "DATA\254 0xFE * Device Type 0xE1 0xB3 * Min Preambles 0x05 * Hart Protocol 0x07 * Device Revision Level 0x01 * Software Revision Level 0x01 * Hardware Revision Level 0x08 * Flags 0x03 * Device ID 0x00 0x00 0x01 * Min Preambles 0x05 * Max No. of Device Variables 0x0A * Conf. change counter 0x00 0x00 * Extended Field Device Status 0x00 * Manufacturer Identification code 0x60 0x55 * Private Label Distributor code 0x60 0x55 * Device Profile 0x01 * "


And tree view only display this:
FirstNode = {Text = "254 0xFE * Device Type 0xE1 0xB3 * Min Preambles 0x05 * Hart Protocol 0x07 * Device Revision Level 0x01 * Software Revision Level 0x01 * Hardware Revision Level 0x08 * Flags 0x03 * Device ID 0x00 0x00 0x01 * Min Preambles 0x05 * Max No. of Device V...

Or how i can break line in tree data like i want to display this data in two lines.
Can you solve this.

推荐答案


这篇关于不以树状视图显示所有数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 04:15