私はコーディングが初めてです。なぜ私のテキストボックスがC#を使ってWindowsフォームにテキストを表示しないのか分かりません。ここに私のコードです。テキストボックスが予想通りにテキストを表示しない
public partial class Form1
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
Form1 myTestObject = new Form1();
myTestObject.myTextPanel("hello");
}
public void myTextPanel(string myText)
{
// Windows Forms textBox1
textBox1.Text = myText;
}
}
以下の回答が掲載されていますので、詳細や説明が必要な場合はお知らせください。 –