Estou em duvida sobre o que estou fazendo errado

no codigo aseguir era para aparesentar 2 produtos e somar seus valores, tentei com parentese mas estava dando erro ai tirei e começou a dizer que nao era possivel converter em string.

Gravidade Código Descrição Projeto Arquivo Linha Estado de Supressão
Erro CS0029 Não é possível converter implicitamente tipo “string” em “System.Windows.Forms.TextBox” teste01 C:\Users\admin\source\repos\teste01\teste01\Form1.cs 55 Ativo

[Resolvido]

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

namespace teste01
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {

        }

        private void textBox2_TextChanged(object sender, EventArgs e)
        {

        }

        private void label3_Click(object sender, EventArgs e)
        {

        }

        private void btnCalcular_Click(object sender, EventArgs e)
        {
            double  quantidadex, quantidadey, valorx, valory, totalx, totaly, total;
            quantidadex = Convert.ToDouble(txtQuantidadex.Text);
            valorx = Convert.ToDouble(txtQuantidadex.Text);
            quantidadey = Convert.ToDouble(txtQuantidadey.Text);
            valory = Convert.ToDouble(txtQuantidadey.Text);          
            totalx = valorx * quantidadex;
            totaly = valory * quantidadey;
            total = totalx + totaly;
            txtTotal = total.ToString();    

        }

        private void textBox2_TextChanged_1(object sender, EventArgs e)
        {

        }
    }
}

O que tem na sua linha 55?

1 curtida

txtTotal = total.ToString();
txtTotal é do tipo TextBox, não pode atribuir string diretamente.
Use a propriedade Text.

txtTotal.Text = total.ToString();
1 curtida

Valeu mano tinha esquecido kk, resolvido