1

我在 C# 中有一个 WPF 应用程序,对于我的一个文本框,输入被输入然后自动转换(摄氏度到华氏度)。当您输入一个数字时,它可以正常工作,但是一旦输入的数字的所有数字都被删除,程序就会崩溃。我想这是因为输入格式是“无效的”,因为它只是试图什么都不转换?我对如何解决这个问题感到困惑,任何帮助将不胜感激,谢谢!

这是我在应用程序中的代码:

private void tempC_TextChanged(object sender, TextChangedEventArgs e)
{
    tempC.MaxLength = 3;
    Temperature T = new Temperature(celsius);
    T.temperatureValueInCelcius = Convert.ToDecimal(tempC.Text);
    celsius = Convert.ToDecimal(tempC.Text);
    T.ConvertToFarenheit(celsius);
    tempF.Text = Convert.ToString(T.temperatureValueInFahrenheit);
}

这是我创建的 API 中的代码:

public decimal ConvertToFarenheit(decimal celcius)
{
    temperatureValueInFahrenheit = (celcius * 9 / 5 + 32);

    return temperatureValueInFahrenheit;
}
4

4 回答 4

5

如果无法进行转换,您应该调用尝试转换值和信号的方法Decimal.TryParse 。

if(Decimal.TryParse(tempC.Text, out celsius))
{
   // Value converted correctly
   // Now you can use the variable celsius 

}
else
   MessageBox.Show("The textbox cannot be converted to a decimal");
于 2013-04-15T19:53:13.533 回答
2
private void tempC_TextChanged(object sender, TextChangedEventArgs e)
{
    Decimal temp;
    if (!Decimal.TryParse(out temp, tempC.Text))
       return;
    ...
于 2013-04-15T19:53:01.717 回答
0

尝试这个 :

private void tempC_TextChanged(object sender, TextChangedEventArgs e)
    {
        if(tempC.Text = "")
           return;
        tempC.MaxLength = 3;
        Temperature T = new Temperature(celsius);
        T.temperatureValueInCelcius = Convert.ToDecimal(tempC.Text);
        celsius = Convert.ToDecimal(tempC.Text);
        T.ConvertToFarenheit(celsius);
        tempF.Text = Convert.ToString(T.temperatureValueInFahrenheit);
    }
于 2013-04-15T19:56:57.867 回答
0

试试Decimal.TryParse 这里有一些例子

string value;
decimal number;

// Parse a floating-point value with a thousands separator. 
value = "1,643.57";
if (Decimal.TryParse(value, out number))
   Console.WriteLine(number);
else
   Console.WriteLine("Unable to parse '{0}'.", value);      

// Parse a floating-point value with a currency symbol and a  
// thousands separator. 
value = "$1,643.57";
if (Decimal.TryParse(value, out number))
   Console.WriteLine(number);
else
   Console.WriteLine("Unable to parse '{0}'.", value);   

// Parse value in exponential notation. 
value = "-1.643e6";
if (Decimal.TryParse(value, out number))
   Console.WriteLine(number);
else
   Console.WriteLine("Unable to parse '{0}'.", value);   

// Parse a negative integer value. 
value = "-1689346178821";
if (Decimal.TryParse(value, out number))
   Console.WriteLine(number);
else
   Console.WriteLine("Unable to parse '{0}'.", value);   
// The example displays the following output to the console: 
//       1643.57 
//       Unable to parse '$1,643.57'. 
//       Unable to parse '-1.643e6'. 
//       -1689346178821      
于 2013-04-15T19:57:58.460 回答