如何在textBox windows phone 8中将文本换行时增加高度

时间:2014-03-09 08:35:01

标签: windows-phone-8

如何在文本包装时增加高度。

  private void creattextbox_Click(object sender, RoutedEventArgs e)
               {
                    var txt = new TextBox();
                    txt.Height = 90;
                    txt.Width = 470;
                    txt.TextWrapping = TextWrapping.Wrap;
                    GR_Img.Children.Add(txt);
               }

1 个答案:

答案 0 :(得分:0)

目前尚不清楚您提到的身高。如果它是文本换行时要增加的TextBox的高度,则避免硬编码Height属性。删除这一行:

txt.Height = 90;

但是如果你想增加每个文本行的高度,换句话说增加TextBox的Text行之间的空间,那么只需将LineHeight属性设置为所需的值:

txt.LineHeight= 50;