我正在构建 Windows Phone 8.1应用。 我想知道是否有一种方法,鉴于 TextBox内容和 FontSize ,我们可以在呈现内容之前找到所需文本框的最佳高度
由于
答案 0 :(得分:0)
我认为没有任何这样的算法可以进行这种计算。但是你可以根据你的应用程序要求尝试类似下面的测试
if (this.testButton.FontSize < 40)
{
this.testButton.Height = this.testButton.FontSize + 70;
}
else
{
this.testButton.Height = this.testButton.FontSize * 2;
}