Sono un principiante e sto facendo un esercizio seguendo un libro. ho ottenuto questoModificatore parziale mancante sulla dichiarazione .. esiste un'altra dichiarazione parziale di questo tipo ". Sono un principiante e sto seguendo il libro
"Missing partial modifier on declaration of type 'Windowsform.Form1'; another partial declaration of this type exists"
Cosa devo fare mio codice è il seguente:.?
using System;
using System.Windows.Forms;
namespace Windowsform
{
public class Form1 : Form
{
private TextBox txtEnter;
private Label lblDisplay;
private Button btnOk;
public Form1()
{
this.txtEnter = new TextBox();
this.lblDisplay = new Label();
this.btnOk = new Button();
this.Text = "My Hellowin app!";
//txtEnter
this.txtEnter.Location = new System.Drawing.Point(16, 32);
this.txtEnter.Size = new System.Drawing.Size(264, 20);
//lblDisplay
this.lblDisplay.Location = new System.Drawing.Point(16, 72);
this.lblDisplay.Size = new System.Drawing.Size(264, 128);
//btnOK
this.btnOk.Location = new System.Drawing.Point(88, 224);
this.btnOk.Text = "OK";
this.btnOk.Click +=
new System.EventHandler(this.btnOK_Click);
//MyForm
this.Controls.AddRange(new Control[] {
this.txtEnter, this.lblDisplay, this.btnOk});
}
static void Main()
{
Application.Run(new Form1());
}
private void btnOK_Click(object sender, System.EventArgs e)
{
lblDisplay.Text = txtEnter.Text + "\n" + lblDisplay.Text;
}
}
}
@ user1742237 Immagino che abbiate modificato la classe Program generata automaticamente per includere la dichiarazione Form1 ma in genere il modello per un'applicazione WinForms include una classe Form1 generata con un vuoto Modulo. Semplicemente cancellalo. –
Ho dovuto scorrere fino a qui per trovare una risposta diretta e orientata al codice? Su StackOverflow? ... – mmcrae