我把CMD里的输出内容,通过网络传输后输出到EDIT BOX控件里.原来的格式是对齐的,如下:
Usage: ping [-t] [-a] [-n count] [-l size] [-f] [-i TTL] [-v TOS]
            [-r count] [-s count] [[-j host-list] | [-k host-list]]
            [-w timeout] target_nameOptions:
    -t             Ping the specified host until stopped.
                   To see statistics and continue - type Control-Break;
                   To stop - type Control-C.
    -a             Resolve addresses to hostnames.
    -n count       Number of echo requests to send.
    -l size        Send buffer size........但是,输出到EDIT BOX里,就变成了如下:Usage: ping [-t] [-a] [-n count] [-l size] [-f] [-i TTL] [-v TOS]
            [-r count] [-s count] [[-j host-list] | [-k host-list]]
            [-w timeout] target_nameOptions:
    -t             Ping the specified host until stopped.
                   To see statistics and continue - type Control-Break;
                   To stop - type Control-C.
    -a             Resolve addresses to hostnames.
    -n count         Number of echo requests to send.
    -l size         Send buffer size.好象无法实现格式原有的对齐. 但是如果把EDIT BOX里的内容拷贝到剪贴板,再粘贴到记事本,格式又是对齐的.难道\t在Edit BOX控件里是失效的? 应该如何解决? 谢谢