- Este tópico contém 1 resposta, 2 vozes e foi atualizado pela última vez 1 ano, 8 meses atrás por Tutora Jessica.
-
AutorPosts
-
-
3 de fevereiro de 2023 às 00:27 #109767Filipe Pinto VicentiniParticipante
/// 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!”;
}
}
} -
2 de março de 2023 às 18:54 #111243Tutora JessicaModerador
Ola Filipe, conseguiu resolver?
-
-
AutorPosts
- Você deve fazer login para responder a este tópico.