答案 0 :(得分:0)
我不是Windows手机程序员,但根据我对c#.Net的经验,我想我们可以建立一个可以做到这一点的逻辑:
试试这个:
string txtData = this.txtTextBox.Text;
string[] splitByCRet = txtData.Split(new string[]{"\r\n"}, StringSplitOptions.None );
if (splitByCRet.Length > 6)
{
//Exceeds the limit;
MessageBox.Show("Exceeds");
}
else
{
MessageBox.Show("Ok to proceed");
}
答案 1 :(得分:0)
我不确定这是你在寻找什么但是尝试:
yourTextBox.Height = yourTextBox.LineHeight * 6;
当然设置文本框的TextWrapping。