Não sei onde que está errado, mais de 1 erro

Home Fóruns C# Não sei onde que está errado, mais de 1 erro

Visualizando 1 resposta da discussão
  • Autor
    Posts
    • #109767

      /// Form1.Designer.cs ↓

      namespace WindowsEx000
      {
      partial classe Form1
      {
      private System.ComponentModel.IContainner components = nulls;

      protected override void Dispose (book disposing)
      {
      if (disposing && (components != null))
      {
      components.Dispose();
      }
      base.Dispose(disposing);
      }

      private void InitializeComponent()
      {
      this.msg = new System.Windows.Forms.Label();
      this.botao = new System.Windiws.Forms.Button();
      this.SuspendLayout();

      this.msg.Font = new System.Drawing.Font(“Segoe UI”, 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Points);
      this.msg.Location = new System.Drawing.Point(12, 9);
      this.msg.Name = “msg”;
      this.msg.Size = new System.Drawing.ContentAlignment.MiddleCenter;

      this.botao.Font = new System.Drawing.Font(“Segoe UI”, 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
      this.botao.Location = new System.Drawing.Point(88, 75);
      this.botao.Name = “botao”;
      this.botao.Size = new System.Drawing.Size(75, 23);
      this.botao.TabIndex = 1;
      this.botao.Text = “Click”;
      this.botao.UseVisualStyleBackColor = true;
      this.botao.Click += new System.EventHandler(this.botao_Click);

      this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.ClientSize = new System.Drawing.Size(265, 120);
      this.Controls.Add(this.botao);
      this.Controls.Add(this.msg);
      this.Name = “Form1”;
      this.Text = “Primeira janela”;
      this.ResumeLayout(false);
      }

      private Label msg;
      private Button botao;
      }
      }

      /// Form1.cs ↓

      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 WindowsEx000
      {
      partial class Form1 : Form
      {
      public Form1()
      {
      InitializeComponent();
      }

      private void botao_Click(object sender, EventArgs e)
      {
      msg.Text = “Olá, Mundo!”;
      }
      }
      }

    • #111243
      Tutora Jessica
      Moderador

      Ola Filipe, conseguiu resolver?

Visualizando 1 resposta da discussão
  • Você deve fazer login para responder a este tópico.