在文本框中显示计算结果

时间:2017-02-22 06:05:34

标签: c#

你好,有人可以告诉我如何在TextBox中显示d的结果吗?

private void Zaehnezahl_TextChanged(object sender, TextChangedEventArgs e)
{
  double a = 0;
  double b = 0;
  double c = 0;
  double d = 0;


  if (Double.TryParse(Modul.Text, out a) && Double.TryParse(Zaehnezahl.Text, out b) && Double.TryParse(Schraegungswinkel.Text, out c))

      d = (a * b) / (System.Math.Cos(c * (Math.PI / 180)));

1 个答案:

答案 0 :(得分:2)

您可以使用TextBox的.Text属性。

TextBox t = new TextBox();
t.Text = d;

使用TextBox(如果已有)并将text替换为TextBox - 正如@UnLucky

所建议的那样