无法将类型“float”隐式转换为System.Windows.Forms.Textbox

时间:2013-08-30 15:49:26

标签: c# windows forms

我现在已经尝试了一段时间如何转换它。 你会如何在Windows窗体中转换它?

它似乎不像普通的控制台应用程序那样....

对不起,如果这看起来很愚蠢,但我不明白。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

 namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
    float input1 = 0;
    float input2 = 0;
    float output = 0;

    int c = 0;


    public Form1()
    {
        InitializeComponent();

    }

    private void button10_Click(object sender, EventArgs e)
    {
        textBox1.AppendText("0");
    }

    private void button11_Click(object sender, EventArgs e)
    {
        textBox1.Clear();
    }

    private void button17_Click(object sender, EventArgs e)
    {

        textBox1 = output;
    }

    private void button12_Click(object sender, EventArgs e)
    {

         switch(c)
         {
             case '+': 
                 output = input1 + input2;

                 break;      
         }
    }

5 个答案:

答案 0 :(得分:4)

private void button17_Click(object sender, EventArgs e)
{

    textBox1.Text = output.ToString();
}

错误说的是textBox1TextBox,您试图将其更改为Float;而且没有任何明确的方法可以做到这一点。

您最想要做的就是将文本框的文本设置为浮动的值。

答案 1 :(得分:3)

 textBox1.Text = output.ToString();

答案 2 :(得分:2)

您应该将值分配给Text属性:

textBox1.Text = output.ToString();

答案 3 :(得分:2)

这就是问题:

  private void button17_Click(object sender, EventArgs e)
    {

        textBox1 = output;
    }

你想达到什么目的?

<强>也许

  private void button17_Click(object sender, EventArgs e)
    {

        textBox1.Text = output.ToString();
    }

答案 4 :(得分:2)

将其更改为

textBox1.Text = output.ToString();