05 2012 档案
摘要:Edit多行设置,要把Edit的Max和Min属性修改,令Max-Min>2(其实Max表示最多多少行,Min表示最少多少行)。然后set字符串的时候,用数字"10"作换行符(因为换行符的ASCII码是10)。代码如下:str1 = ['第一行', 10];str2 = ['第二行', 10];str3 = ['第三行', 10];str4 = '没有了';str = [str1, str2, str3, str4];set(handles.editResult, 'string', st
阅读全文